scrimba
unit conversion
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

unit conversion
AboutCommentsNotes
unit conversion
Expand for more info
index.html
run
preview
console
<html>

<head>
<link rel="stylesheet" href="index.css">
</head>

<body>
<div class="headerContainer">
<h3 class="title">Metric/Imperial Unit Conversion</h3>
<input min="1" value="20" id="inputNum" type="number" />
<button id="convert-btn">Convert</button>
</div>

<div class="bodyContainer">
<div class="tabContainer">
<h3>Length (Meter/Feet)</h3>
<p id="meterAndfeet"></p>
</div>

<div class="tabContainer">
<h3>Volume (Liters/Gallons)</h3>
<p id="litersANDgallons"></p>
</div>

<div class="tabContainer">
<h3>Mass (Kilograms/Pounds)</h3>
<p id="kilogramsANDpounds"></p>
</div>
</div>
<script src="index.js"></script>
</body>

</html>
Console
/index.html
LIVE