-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (27 loc) · 968 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
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Temperature Converter</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<h1>Temperature Converter</h1>
<div class="converter">
<input type="number" id="temperature" class="input-field" placeholder="Enter temperature" />
<select id="unit" class="select-field">
<option value="celsius">Celsius</option>
<option value="fahrenheit">Fahrenheit</option>
<option value="kelvin">Kelvin</option>
</select>
<button onclick="convertTemperature()" class="convert-button">Convert</button>
</div>
<div id="result-box"></div>
<div class="history-container">
<button onclick="showHistory()" class="show-history-button">Show History</button>
<ul id="history"></ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>