-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 838 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Feet to Cm Converter</title>
<link href="cm-to-m-converter.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="container">
<div class="input-container">
<label for="cm">Enter length in centimeters (cm):</label>
<input type="number" id="cm" placeholder="Enter length in centimeters:">
</div>
<div class="input-container">
<label for="m">Result in meters (m):</label>
<input type="number" id="m" placeholder="Result" readonly>
</div>
<div class="button-container">
<button id="calculate-btn">Convert</button>
<button id="reset-btn">Reset</button>
</div>
</div>
<script src="cm-to-m-converter.js"></script>
</body>
</html>