-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (27 loc) · 984 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temperature converter</title>
<link href="style.css" rel="stylesheet" />
<script src="script.js" defer></script>
</head>
<body>
<h1>Temperature Converter</h1>
<label for="magnitude">Enter Temperature:</label>
<input class="temp-input" name="magnitude">
<label for="unit">Enter Unit:</label>
<select class="unit-input" name="unit">
<option value="kelvin">Kelvin</option>
<option value="fahrenheit">Fahrenheit</option>
<option value="celsius">Celsius</option>
</select>
<button class="submit-button">Submit</button>
<div class="result">
<div class="first-conversion"></div>
<div class="second-conversion"></div>
</div>
<footer>Made by <strong>Your name here</strong>, styled by <strong>Friend's name here</strong></footer>
</body>
</html>