-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemp.html
More file actions
27 lines (24 loc) · 772 Bytes
/
Copy pathtemp.html
File metadata and controls
27 lines (24 loc) · 772 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="temp.css">
</head>
<body>
<form>
<h2>Temperature Converter</h2>
<input type="number" value="0" id="textBox">
<br>
<input type="radio" name="unit" id="toFahrenheit">
<label for="toFahrenheit">Celsius ➡️ Fahrenheit</label>
<br>
<input type="radio" name="unit" id="toCelsius">
<label for="toCelsius">Fahrenheit ➡️ Celsius</label><br>
<button type="button" onclick="convert()">Convert</button>
<p id="result"></p>
</form>
<script src="temp.js"></script>
</body>
</html>