-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
34 lines (34 loc) · 1 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contato</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<h1>Detalhes de Contato</h1>
<p>Brasil, Natal-RN</p>
<p>+55(84)9 8893-3380</p>
<p>[email protected]</p>
<hr />
<form formmethod="post" action="index.html" enctype="text/plain">
<label for="Nome">Seu Nome:</label>
<input type="text" id="Nome" name="#" />
<br />
<label for="email">Seu Email:</label>
<input type="email" id="email" name="#" />
<br />
<label for="mensagem">Sua Mensagem:</label><br />
<textarea
placeholder="Escreva Aqui!!!"
id="mensagem"
rows="10"
cols="30"
></textarea>
<br />
<button type="submit">Enviar</button>
</form>
</body>
</html>