-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 982 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">
<link rel="stylesheet" href="style.css">
<title>Temperature Converter</title>
</head>
<body>
<div class="container">
<h3>Temperature Converter</h3>
<div class="inputvalue"> <div class="degree"><label for="">Degrees</label><br>
<input type="text" inputmode="numeric" id="temperature" placeholder="Enter temperature" ></div>
<div class="select"><label for="">Type</label><br>
<select id="unit">
<option value="celcius">Celcius</option>
<option value="farenheit">Fahrenheit</option>
</select></div>
</div>
<div class="result"><label for="">Result:</label><br>
<input type="text" id="result" readonly></div>
<button onclick="convertTemp()">Convert</button>
</div>
<script src="script.js"></script>
</body>
</html>