forked from AlexErdei73/money-exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exchange.html
40 lines (37 loc) · 1.06 KB
/
exchange.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
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=h1, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Money Exchane</title>
</head>
<body>
<nav>
<ul>
<li class="logo"><a href="./index.html">MONEY EXCHANGE</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./exchange.html">exchange app</a></li>
</ul>
</nav>
<div class="h1">
<h1>Exchange app</h1>
</div>
<div class="container">
<form>
<label id="in-cu" for="input-currency">Input Currency*</label>
<select name="input-currency" id="input-currency"></select>
<br />
<label for="output-currency">Output Currency*</label>
<select name="output-currency" id="output-currency"></select>
<br />
<label for="currency-amount">Currency Amount*</label>
<input type="number" name="amount" id="currency-amount" />
<br />
<button type="submit">Submit</button>
</form>
</div>
<h1 id="output-text"></h1>
<script src="index.js"></script>
</body>
</html>