-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconverter.html
More file actions
44 lines (44 loc) · 1.39 KB
/
converter.html
File metadata and controls
44 lines (44 loc) · 1.39 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Number to Words Converter</title>
<link rel="stylesheet" href="converterstyle.css">
</head>
<body>
<header>
<div class="logo">
<h1>WordMyNumber</h1>
<p>Convert numbers to words seamlessly!</p>
</div>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
</ul>
</nav>
</header>
<section id="features" class="features">
<div class="converter">
<h3>Number to Word Converter</h3>
<p>Enter a number to convert it into its word format:</p>
<input type="text" id="numberInput" placeholder="Enter a number" /><br>
<select id="numberingSystem">
<option value="international">International</option>
<option value="indian">Indian</option>
</select><br>
<button id="convertButton">Convert</button><br>
<p id="result"></p>
</div>
</section>
<footer>
<p>Number to Words Converter.</p>
<div class="social-links">
<a href="#">Linkdin</a> |
<a href="#">Github</a> |
<a href="#">Instagram</a>
</div>
</footer>
<script src="converterscript.js"></script>
</body>
</html>