-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.82 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.82 KB
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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@800&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<!-- title -->
<div class="top">
<h1>Metric/Imperial Unit Conversion</h1>
<!-- input -->
<div class="input-btn-group">
<input id="input-el" >
<button id="btn-el">Convert</button>
</div>
</div>
<div class="bottom">
<div class="card">
<h2>Length (Meter/Feet)</h2>
<p id ="length-el">
<!-- 1 meter = 3.281 feets | 1 feet = 0.304 meters -->
</p>
</div>
<div class="card">
<h2>Volume (Liters/Gallons)</h2>
<p id ="volume-el">
<!-- 1 liter = 0.264 gallons | 1 gallons = 3.78 liters -->
</p>
</div>
<div class="card">
<h2>Mass (Kilograms/Pounds)</h2>
<p id ="mass-el">
<!-- 1 kilo = 2.204 pounds | 1 pound = 0.453 kilos -->
</p>
</div>
</div>
</div><script src="index.js"></script>
</body>
</html>