-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 919 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 919 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
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="design-1">
</div>
<div id="design-2">
</div>
<div class="all">
<div id="p1">
<center><h1>Temperature Converter</h1>
<h2> Celsius (°C) to Kelvin (K) and Farenheit (°F)</center></h2>
</div>
<div id="p2">
<h4>Enter the value in (°C):</h4>
</div>
<input type="number" id="value"><span id="done"></span>
<button id="bt">Convert</button>
<div id="output">
<p>Kelvin: <span id=outputk></span></p>
<p>Farenheit: <span id="outputf"></span></p>
</div>
</div>
<script src="script.js" type="text/javascript">
</script>
</body>
</html>