-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 837 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="feet-to-cm-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="ft">Enter length in feet (ft):</label>
<input type="number" id="ft" placeholder="Enter length in feet">
</div>
<div class="input-container">
<label for="cm">Result in centimeters (cm):</label>
<input type="number" id="cm" placeholder="Result" readonly>
</div>
<div class="button-container">
<button id="calculate-btn">Convert</button>
<button id="reset-btn">Reset</button>
</div>
</div>
<script src="feet-to-cm-converter.js"></script>
</body>
</html>