-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.07 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
<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>
<section class="top">
<h1>Metric/Imperial Unit Conversion</h1>
<form id="convert-form">
<input type="text" id="convert-input" name="convert-input" required>
<button type="submit" id="convert-btn">Convert</button>
</form>
</secion>
<section class="bottom">
<div class="txt-container">
<h3>Length (Meter/Feet)</h3>
<p class="txt-el" id="length-el"></p>
</div>
<div class="txt-container">
<h3>Volume (Liters/Gallons)</h3>
<p class="txt-el" id="volume-el"></p>
</div>
<div class="txt-container">
<h3>Mass (Kilograms/Pounds)</h3>
<p class="txt-el" id="mass-el"></p>
</div>
</section>
<script src="index.js"></script>
</body>
</html>