-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
33 lines (30 loc) · 1.14 KB
/
home.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
<!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>Receitas da Jurema</title>
<link rel="stylesheet" href="formatos.css">
</head>
<body>
<header class="topo" id="content-wrap">
<nav class="topo__menu">
<a class="topo__menu__link" href="home.html">Home</a>
<a class="topo__menu__link" href="receitas.html">Receitas</a>
<a class="topo__menu__link" href="cadastro.html">Cadastro</a>
</nav>
</header>
<main class="apresentacao">
<section>
<img class="logo logo__titulo" src="./imagens/logo.png" alt="Logo">
<h1 class="titulo__apresentacao logo__titulo">Receitas da Jurema</h1>
<p class="apresentacao__subtitulo">Bem-vindo(a) ao site da Jurema.
<br>Conheça deliciosas receitas para o dia a dia.</p>
</section>
</main>
<footer class="rodape">
<p>© Amanda 2023</p>
</footer>
</body>
</html>