-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 1.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>Digit to Words</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script>
</head>
<body class="bg-info">
<nav></nav>
<div class="container align-middle p-5">
<h2 class="p-5">Simple Digit to words converted</h2>
<div class="d-flex flex-column">
<input type="text" name="digit" class="" placeholder="Enter digit to convert" id="dwi" />
<span id="output" class="d-block"> Output</span>
<button class="btn btn-outline-primary" id="dw" onclick="handle_convert()">
Convert Digit
</button>
</div>
</div>
<script src="js/main.js">
</script>
</body>
</html>