-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChetan.html
36 lines (31 loc) · 1.11 KB
/
Chetan.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
<!DOCTYPE html>
<head>
<title>Temperature Converter</title>
<link rel="stylesheet" type="text/css" href="design.css">
</head>
<body>
<form>
<div class="container">
<h1>Temperature Converter</h1>
<label name="temperature"><b>Enter Temperature:</b</label>
<input type="number" id ="temperature" name="temperature" placeholder="Enter temperature Here.........">
<label class="from">From</label>
<select id="from">
<option value="Fahrenheit">Fahrenheit</option>
<option value="Celsius">Celsius</option>
<option value="Kelvin">Kelvin</option>
</select>
<label class="to">To</label>
<select id="to">
<option value="Fahrenheit">Fahrenheit</option>
<option value="Celsius">Celsius</option>
<option value="Kelvin">Kelvin</option>
</select>
<button type="button" onclick="convert( )">Convert</button>
<label name="result">Result</label>
<input type="text" id="result" name="result" readonly>
</form>
</div>
<script src="script.js"></script>
</body>
</html>