-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 941 Bytes
/
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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>Metric/Imperial Unit Coversion</h1>
<input type="text" id="input">
<button id="convert-btn">Convert</button>
</div>
<div class="conversion">
<h4>Length (Meter/Feet)</h4>
<p id="meter-feet"></p>
</div>
<div class="conversion">
<h4>Volume (Litre/Gallons)</h4>
<p id="litre-gallon"></p>
</div>
<div class="conversion">
<h4>Mass (Kilograms/Pounds)</h4>
<p id="kilo-pound"></p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>