forked from movimentocodar/primeiras-paginas-web-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
refeicao.html
77 lines (75 loc) · 3.68 KB
/
refeicao.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="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>Nossas Receitas</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.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=Caveat&family=Mouse+Memoirs&display=swap" rel="stylesheet">
<script src="heart.js"></script>
</head>
<body>
<header>
<h1><img src="imagens/logo.png" class="logo" alt="Logo da culinaria"></h1>
<h2 class="titulo">
Nossas Receitas
</h2>
<nav>
<ul class="lista">
<li><a href="index.html">Todas</a></li>
<li><a href="refeicao.html">Refeições</a></li>
<li><a href="lanche.html">Lanches</a></li>
<li><a href="petisco.html">Petisco</a></li>
</ul>
</nav>
</header>
<main class="grid">
<div class="card">
<div class="card-header">
<img src="imagens/peru.png">
</div>
<div class="imagens/card-body">
<h1>
REFEIÇÕES
</h1>
<p>
Uma das refeições mais tradicionais da casa, servida à gerações
</p>
<svg id="coracao4" data-heart="false" onclick="handleClick('coracao4')" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>
</div>
</div>
<div class="card">
<div class="card-header">
<img src="imagens/macarrao.jpg">
</div>
<div class="card-body">
<h1>
REFEIÇÕES
</h1>
<p>
Nada mais romântico do que esse espaguete, capaz de unir os casais mais improvavéis
</p>
<svg id="coracao5" data-heart="false" onclick="handleClick('coracao5')" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>
</div>
</div>
<div class="card">
<div class="card-header">
<img src="imagens/lasagna.png">
</div>
<div class="card-body">
<h1>
REFEIÇÕES
</h1>
<p>
A massa mais recomendada do mundo dos desenhos
</p>
<svg id="coracao2" data-heart="false" onclick="handleClick('coracao2')" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-heart"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>
</div>
</div>
</main>
</body>
</html>