-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
61 lines (45 loc) · 1.18 KB
/
form.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
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype.html/>
<html>
<head>
<title> Main </title>
<meta charset="utf-8">
<style type="text/css"> </style>
</head>
<body>
<a href="contato.html">
Contato
</a>
<a href="empresa.html">
Quem somos?
</a>
<form action="[email protected]" method="get">
<p> <font face="calibri"/> Nome:
<input type="text" name="nome" size="25" maxlength="50"/>
</p>
<p> Nº do cartão de crédito
<input type="text" name="nun_cartao" size="16"/>
</p>
<p> Senha
<input type="password" name="senha" size="6"/>
</p>
<p> Selecione a bandeira do cartão de crédito.
<br>
<input type="radio" name="card"/> VISA <br>
<input type="radio" name="card"/> MASTERCARD
</p>
<p> Selecione o horário para entrega: <br>
<input type="checkbox" name="horario1" size="1"/> 8h às 12h <br>
<input type="checkbox" name="horario2" size="1"/> 13h às 15h <br>
<input type="checkbox" name="horario2" size="1"/> 16h às 18h
</p>
<p> Endereço
<input type="text" name="ende" size="30"/>
</p>
<p> Referência
<textarea name="ref" rows="2" cols="30"></textarea>
</p>
<input type="submit" value="Enviar"/>
<input type="reset" value="Limpar"/>
</form>
</body>
</html>