-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 926 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (24 loc) · 926 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 67</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<form>
<h1>Temperature conversion</h1>
<ul>
<li class="list"><input type="number" id="textBox" value="0"></li>
<li class="list"><input type="radio" id="toFahrenheit" name="unit"></li>
<li class="list"><label for="toFahrenheit">Celsius ➡️ Fahrenheit</label></li>
<li class="list"><input type="radio" id="toCelsius" name="unit"></li>
<li class="list"><label for="toCelsius">Fahrenheit ➡️ Celsius</label></li>
<button type="button" onclick="convert()">submit</button>
<p id="result"></p>
</ul>
</form>
<script src="index.js"></script>
</body>
</html>