forked from Werbster-MT/Web-Server-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmassa.html
More file actions
53 lines (47 loc) · 1.88 KB
/
Copy pathmassa.html
File metadata and controls
53 lines (47 loc) · 1.88 KB
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
50
51
52
53
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conversor de Massa</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<section>
<div class="main">
<h1>Conversor de Massa</h1>
<form method="post" action="cgi-bin/massa.py">
<div class="value">
<div class="input-value">
<label for="valor">Valor:</label> <input type="text" name="valor" id="valor" placeholder="Ex.: 100">
</div>
</div>
<div class="convert">
<div class="input-convert">
<label for="unidade1">De:</label>
<select name="unidade1" id="unidade1">
<option value="sel">Selecione</option>
<option value="kg">Quilograma</option>
<option value="gr">Grama</option>
<option value="mg">Miligrama</option>
</select>
</div>
<div class="input-convert">
<label for="unidade2">Para:</label>
<select name="unidade2" id="unidade2">
<option value="sel">Selecione</option>
<option value="kg">Quilograma</option>
<option value="gr">Grama</option>
<option value="mg">Miligrama</option>
</select>
</div>
</div>
<div class="send">
<button>Enviar</button>
</div>
</form>
<a class="back" href="./index.html">Voltar</a>
</div>
</section>
</body>
</html>