-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (25 loc) · 863 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (25 loc) · 863 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Currency Converter</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>Currency Converter</h1>
<form>
<label for="amount">Amount:</label><br>
<input type="text" id="amount" name="amount"><br>
<label for="from">From:</label><br>
<select id="from" name="from"></select><br>
<label for="to">To:</label><br>
<select id="to" name="to"></select><br><br>
<input type="submit" value="Convert">
</form>
<div id="result">
<p>Converted Amount: <span id="converted_Amount"></span></p>
</div>
<div class="copyright"> This is a sample project by <span><a href="https://holladstar.com/twitter">OLADIMEJI OLAYINKA</a> </span></div>
<script src="./index.js"></script>
</body>
</html>