<body>
<div id="top-container">
<div class="head">
<h1 class="heading">Metric/Imperial Unit Conversion</h1>
<input type="text" id="input-number" name="input-number">
<p id="err-msg"></p>
<button id="convert-button" type="button">Convert</button>
</div>
</div>
<div id="bottom-container">
<div id="length">
<h3>Length (Meter/Feet)</h3>
<p id="length-calc">-</p>
</div>
<div id="volume">
<h3>Volume (Liters/Gallons)</h3>
<p id="volume-calc">-</p>
</div>
<div id="mass">
<h3>Mass (Kilograms/Pounds)</h3>
<p id="mass-calc">-</p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>
<html>
<head>
<link rel="stylesheet" href="index.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=Inter:wght@400;800&display=swap"
rel="stylesheet">
</head>