-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.28 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Software Engineering Summative 1 Caspian Currency Converter</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<h1>Caspian Currency Converter</h1>
<div class="date">05/01/2023</div>
<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="convertbtn" id="convertbtn">Convert</button>
</div>
<img src="http://www.geonames.org/flags/l/gb.gif" class="flag">
<img src="http://www.geonames.org/flags/l/ru.gif" class="flag">
<img src="http://www.geonames.org/flags/l/jp.gif" class="flag">
<img src ="http://www.geonames.org/flags/l/nz.gif" class="flag">
<script src="index.js"></script>
</body>
</html>