-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (35 loc) · 1.08 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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Temperature Converter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Temperature Converter</h1>
<div class="converter">
<div class="input-group">
<label>Temperature:</label>
<input type="number" id="temperature" placeholder="Enter temperature" required>
</div>
<div class="input-group">
<label>From:</label>
<select id="fromUnit">
<option value="celsius">Celsius</option>
<option value="fahrenheit">Fahrenheit</option>
<option value="kelvin">Kelvin</option>
</select>
</div>
<div class="input-group">
<label>To:</label>
<select id="toUnit">
<option value="celsius">Celsius</option>
<option value="fahrenheit">Fahrenheit</option>
<option value="kelvin">Kelvin</option>
</select>
</div>
<button class="convert-btn" onclick="convertTemperature()">Convert</button>
<div class="result" id="result"></div>
</div>
<script src="script.js"></script>
</body>
</html>