-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
59 lines (52 loc) · 1.71 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
<!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</title>
<link rel="stylesheet" href="style/global.css">
</head>
<body>
<header>
<div class="container-logo">
<img class="logo" src="img/logo.png" alt="Logo Omma">
</div>
<nav>
<ul class="menu">
<li class="menu-item">
<a class="menu-item-link" href="index.html">Inicio</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="lista-receitas.html">Receitas</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="contato.html">Contato</a>
</li>
</ul>
</nav>
</header>
<main>
<div id="background">
<h1>manda um <br> alô :)</h1>
</div>
<section id="container-form">
<div id="banner">
<img src="img/form.png">
</div>
<div class="container-form"></div>
<form>
<h3>Contato</h3>
<input type="text" placeholder=" Seu Nome">
<input type="email" placeholder=" Seu Email">
<textarea placeholder=" Mensagem"></textarea>
<button id="enviar">enviar</button>
</form>
</section>
</main>
<footer>
<img class="logo" src="img/logo.png" alt="Logo da omma">
<p>@ 2022 omma - todos os direitos são de vocês.</p>
</footer>
</body>
</html>