-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (71 loc) · 3.66 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!--METADATA-->
<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="author" content="Miguel Santoso, Gabriel da Silva Mendes">
<meta name="keywords" content="Receitas, waffles">
<meta name="description" content="Receitas fáceis incriveis">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- FONTS -->
<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=Roboto:wght@400;700&display=swap" rel="stylesheet"/>
<!-- TITLE -->
<title>Site de Receitas</title>
</head>
<body>
<main>
<!-- MAIN -->
<h1>WAFFLE CLÁSSICO</h1>
<figure>
<img src="assets/waffle.jpg" alt="Foto de um Waffle">
<figcaption>Receita de waflle Clássico</figcaption>
</figure>
<article>
<!-- INGREDIENTS -->
<section class="ingredients">
<h2>INGREDIENTES</h2>
<div class="ingredients-list">
<ul>
<li>2 xícaras (chá) de farinha de trigo</li>
<li>2 colher (sopa) de açúcar</li>
<li>2 colheres (chá) de fermento em pó</li>
<li>1/2 (chá) de sal</li>
<li>2 colheres amido de milho</li>
<li>3 ovos batidos</li>
<li>4 colheres (sopa) de manteiga sem sal derretida</li>
<li>1 e 3/4 de xícara (chá) de leite</li>
<li>1 colher (sopa) de essência de baunilha</li>
</ul>
</div>
</section>
<!-- PREPARATION -->
<section class="preparation">
<h2>MODO DE PREPARO</h2>
<div class="preparation-list">
<ol>
<li>Peneire em um recipiente a farinha de trigo, o açúcar, o amido, o fermento e o sal. Reserve.</li>
<li>Em outro recipiente misture os ovos batidos com o leite, a manteiga derretida e a essência de baunilha.</li>
<li>Despeje sobre a mistura de farinha e rapidamente incorpore os ingredientes.</li>
<li>Aqueça o aparelho para Waffles. Coloque uma concha rasa de massa e espalhe até cobrir o molde do aparelho, feche a tampa e deixe assar até a massa ficar bem dourada.</li>
<li>Retire com espátulas de silicone. Sirva com mel, frutas ou geleia.</li>
</ol>
</div>
</section>
<!-- MORE INFORMATIONS -->
<section class="add-informations">
<h2>INFORMAÇÕES ADICIONAIS</h2>
<p>Você poderá servir esses Waffles no café da manhã com geleia</p>
</section>
</article>
</main>
<footer>
<!-- FOOTER -->
<p>Desafio criado por <cite><a href="https://rocketseat.com.br/" target="_blank">Rocketseat</a></cite>. <br> Feito por <strong>Gabriel Mendes</strong> e <strong>Miguel Santos</strong>.</p>
</footer>
</body>
</html>