-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 962 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
<!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="styles.css">
</head>
<body>
<div class ="container">
<h1>Temperature Converter</h1>
<input type="number" id="textBox" placeholder="Enter temperature..."><br>
<input type="radio" id="celsius" name="unit">
<label for="celsius">Celsius to Fahrenheit</label>
<br>
<input type="radio" id="Fahrenheit" name="unit">
<label for="Fahrenheit">Fahrenheit to Celsius</label>
<br>
<button id="convert" onclick="convertTemp()">Convert</button>
<button id="reset" onclick="reset()">Reset</button>
<p id="output">Your answer will appear here</p>
<script src="script.js"></script>
</div>
</body>
</html>