-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
56 lines (56 loc) · 1.59 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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" />
<meta
name="keywords"
content="receitas, site de receitas, almoco, familia"
/>
<meta name="author" content="Hudson Menezes" />
<link rel="stylesheet" href="./styles/style.css" />
<title>Omna - Site Receitas - Projeto Gama Academy</title>
</head>
<body>
<header>
<div class="logo-bg">
<img src="./assets/logo.png" alt="Logo omna" />
</div>
<nav>
<ul class="nav-menu">
<li><a href="./index.html">Início</a></li>
<li><a href="./allrecipes.html">Receitas</a></li>
<li><a href="./contact.html">Contato</a></li>
</ul>
</nav>
</header>
<main>
<div class="banner-contact">
<h1>manda um alô ;)</h1>
</div>
</main>
<section class="form-container">
<img src="./assets/retangle-contact.png" alt="Contato" />
<div>
<form action="#">
<h2>Contato</h2>
<input type="text" placeholder="nome" />
<input type="email" placeholder="email" />
<textarea
name="msg"
id="msg"
cols="30"
rows="10"
placeholder="mensagem"
></textarea>
<button>enviar</button>
</form>
</div>
</section>
<footer>
<img src="./assets/logo.png" alt="Logo" />
<p>© 2022 omma - Tudo nosso, nada deles</p>
</footer>
</body>
</html>