-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (29 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<form id="estrutura_web">
<h2>Contato:</h2>
<fieldset class="campo_contato">
<legend>Formulário de Contato</legend>
<label for="nome">Nome*</label>
<input type="text" id="name" class="campo_form" name="nome" placeholder="Escreva seu nome" required>
<label for="sobrenome">Sobrenome</label>
<input type="text" id="sobrenome" class="campo_form" name="sobrenome" placeholder="Escreva seu sobrenome">
<label for="email">E-mail*</label>
<input type="email" id="email" class="campo_form" name="email" placeholder="[email protected]" required>
<label for="check" class="checkbox">
<input type="checkbox" id="check" name="check">
Aceito as normas da gata
</label>
</fieldset>
<button type="submit">Enviar</button>
</form>
</body>
</html>