-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3_task.html
More file actions
30 lines (25 loc) · 812 Bytes
/
3_task.html
File metadata and controls
30 lines (25 loc) · 812 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temperature Converter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Temperature Converter</h1>
<input type="number" id="temperature" placeholder="Enter temperature">
<select id="unit">
<option value="celsius">Celsius</option>
<option value="fahrenheit">Fahrenheit</option>
<option value="kelvin">Kelvin</option>
</select>
<button type="button" id="convert">Convert</button>
<button type="button" id="clear">Clear</button>
<div id="result"></div>
<ul id="history"></ul>
</div>
<script src="script.js"></script>
</body>
</html>