-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
88 lines (74 loc) · 2.31 KB
/
contato.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Contato</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="navbar">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="vestuario.html">Vestuário</a></li>
<li><a href="esportes.html">Esportes</a></li>
<li><a href="entretenimento.html">Entretenimento</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</div>
<div class="container">
<header>
<img src="https://i.imgur.com/qwTwfmU.jpg" class="image" height="300px" width="400px">
</header>
<main>
<div class="contact">
<p>Deixe sua mensagem</p>
<form>
Nome Completo:
<br>
<input type="text" name="nome" placeholder="Nome completo">
<br>
Telefone:
<br>
<input type="text" name="telefone" placeholder="(xx) xxxx-xxxx">
<br>
Email:
<br>
<input type="text" name="email" placeholder="[email protected]">
<br>
<br>
<textarea rows="5" cols="55"></textarea>
<br>
<input type="submit">
</form>
<br>
</div>
</main>
<aside>
<p> Ou nos mande email<p>
<div>
<h6>Christiane</h6>
</div>
<br>
<div>
<h6>Gabrielle</h6>
</div>
<br>
<div>
<h6>Jean</h6>
</div>
<br>
<div>
<h6>Julio</h6>
</div>
</aside>
</div>
</body>
</html>