-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (60 loc) · 2.97 KB
/
index.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
<!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">
<title>Início</title>
<link rel="stylesheet" href="./CSS/inicio.css">
<link rel="stylesheet" href="./CSS/global.css">
<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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h3 class="logo"><a href="#"></a></h3>
<img src="./Imagem/logo.png" alt="logo empresa" title="Logo da Empresa" id="logocabeçalho">
</header>
<nav>
<h5 class="Screen-reader-only"></h5>
<ul>
<li><a href="./index.html">Início</a></li>
<li><a href="./receitas.html">Receitas</a></li>
<li><a href="./contato.html">Contato</a></li>
</ul>
</nav>
<main>
<section class="top">
<p>receitas<br> com afeto</p>
</section>
<h2>receitas da semana</h2>
<section class="middle">
<article class="link-receita">
<img width="345" height="342" src="./Imagem/risoto.png" alt="Foto de um risoto de abobora delicioso">
<span class="titulo-receita">Risoto de Abóbora</span>
<a href="./omma.html" class="link-receita">Conferir</a>
</article>
<article class="link-receita">
<img width="345" height="342" src="./Imagem/bolo-banana.png" alt="Foto de um bolo de banana delicioso">
<span class="titulo-receita">Bolo de Banana</span>
<a href="./receitas.html" class="link-receita">Conferir</a>
</article>
<article class="link-receita">
<img width="345" height="342" src="./Imagem/tabule.png" alt="Foto de um risoto de abobora delicioso">
<span class="titulo-receita">Risoto de Abóbora</span>
<a href="./omma.html" class="link-receita">Conferir</a>
</article>
</section>
<section class="botton">
<h3>Comer é viver</h3>
<h4>Receitas preparadas com muito carinho, para que você possa sentir o prazer de preprarar uma deliciosa refeição para sua familia.
Todas as receitas terá a lista de ingrediente indicando tudo que você precisa, além disso, terá as intruções de preparo. </h4>
</section>
</main>
<Footer>
<img src="./Imagem/logo.png" alt="logo empresa" id="logorodape" title="Logo da Empresa">
<p>© 2022 omma - Todos os direitos são de vocês</p>
</Footer>
</body>
</html>