-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
46 lines (45 loc) · 1.51 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
<!DOCTYPE html>
<html lang="pt-BR">
<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>Omma - Receitas legais</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/assets/css/index.css" />
</head>
<body>
<header>
<img src="/assets/images/logo-white.png" width="324" height="84" />
</header>
<nav>
<a href="/index.html">inicio</a>
<a href="#">receitas</a>
<a href="/contato.html">contato</a>
</nav>
<main>
<section id="cabecalho">
<h1>manda um alô :)</h1>
</section>
<section id="contato">
<img src="/assets/images/contato.jpg" width="350" height="771" />
<form>
<h2>Contato</h2>
<input type="text" name="nome" placeholder="nome" />
<input type="email" name="email" placeholder="email" />
<textarea rows="15" name="mensagem" placeholder="mensagem"></textarea>
<button type="submit">enviar</button>
</form>
</section>
</main>
<footer>
<img src="/assets/images/logo-white.png" />
<span>© 2022 omma - Todos os direitos são de vocês</span>
</footer>
</body>
</html>