-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurrency.html
32 lines (30 loc) · 1.09 KB
/
currency.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currency Convertor App Using Javascript</title>
<link rel="stylesheet" href="./curr.css">
</head>
<body>
<div class="container">
<img src="./images/exchange.png" alt="money exchange" width="200px" height="200px">
<h1>Currency Convertor</h1>
<div class="box">
<div class="left_box">
<select name="currency" class="currency"></select>
<input type="number" name="" id="num">
</div>
<div class="right_box">
<select name="currency" class="currency"></select>
<input type="text" name="" id="ans" disabled>
</div>
</div>
<button class="btn" id="btn">Convert</button>
</div>
<div >
<strong><button type="button" class="button-36"><a id="home" href="./index.html" rel="noopener noreferrer">Back to homepage</a></button></strong>
</div>
<script src="script.js"></script>
</body>
</html>