-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 1.56 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temperature Wizard</title>
<meta name="google-site-verification" content="iNzSj2wvdEOVu1PtrK5FfEiu_teOG2LQn5i3kg-xozQ" />
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
</head>
<body>
<div class="container">
<h1 class="heading">Temperature Wizard - A Temperature Converter </h1>
<div class="temp-container">
<label for="Celcius">Celcius</label>
<input
onchange ="computeTemp(event)"
type="number"
name="Celcius"
id="Celcius"
class="Celcius"
placeholder="Enter Temperature in Celcius"/>
</div>
<div class="temp-container">
<label for="fahre">Fahrenheit</label>
<input
onchange="computeTemp(event)"
type="number"
name="Fahrenheit"
id="Fahrenheit"
class="Fahrenheit"
placeholder="Enter Temperature in Fahrenheit"/>
</div>
<div class="temp-container">
<label for="Kelvin">Kelvin</label>
<input
onchange="computeTemp(event)"
type="number"
name="Kelvin"
id="Kelvin"
class="Kelvin"
placeholder="Enter Temperature in Kelvin"/>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>