-
Notifications
You must be signed in to change notification settings - Fork 25
/
exchangeRate.html
50 lines (48 loc) · 1.29 KB
/
exchangeRate.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
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pounds to Euros</title>
<link rel="stylesheet" type="text/css" href="css/mobile.css">
<link rel="stylesheet" media="only screen and (min-width:720px)" href="css/desktop.css">
</head>
<body>
<div class="container">
<header>
<h1>Exchange Rate Calculator</h1>
</header>
<div class="main">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="exchangeRate.html">Exchange Calculator</a></li>
<li><a href="aboutUs.html">About Us</a></li>
</ul>
</nav>
<div class="content">
<h2>Convert Pounds to Euros</h2>
<section>
<div>
<form id="myForm">
<p>
<label for="pounds">Enter Pounds:</label>
<input type="text" id="pounds">
</p>
<p class="submitBtn">
<input type="submit" value="Convert to Euros">
</p>
</form>
</div>
<div>
<p id="msg"></p>
</div>
</section>
</div>
</div>
<footer>
© 2020 mustbebuilt
</footer>
</div>
</body>
</html>