-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (38 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<title> Conversor de Temperatura </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form class="form-allign">
<table border="0">
<tr>
<th colspan="5" class="conv"> Conversor de Temperatura </th>
</tr>
<tr class="s">
<td >
<select name="operacao" id="operacao">
<option value="select"> Selecione para Converter </option>
<option value="CF"> Celsius p/ Fahrenheit </option>
<option value="CK"> Celsius p/ Kelvin </option>
<option value="FC"> Fahrenheit p/ Celsius </option>
<option value="FK"> Fahrenheit p/ Kelvin </option>
<option value="KC"> Kelvin p/ Celsius </option>
<option value="KF"> Kelvin p/ Fahrenheit </option>
</select>
</td>
</tr>
<tr>
<td> <input type="text" name="val1" id="val1"> </td>
<td> <input type="button" value="=" onclick="calculator();" name=""></td>
<td> <input type="text" name="val1" id='result'></td>
</tr>
</table>
</form>
<script> </script>
</body>
</html>