-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (54 loc) · 2.69 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
<!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>Waffle Clássico</title>
<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=DM+Sans:wght@400;500;700&family=Nunito:wght@300;400;700&family=Poppins:wght@200;400;500;700&family=Roboto:wght@300;500&display=swap" rel="stylesheet">
</head>
<body>
<main class="container">
<h1 class="title">Waffle Clássico</h1>
<figure>
<img src="./assets/images/waffleclassic.jpg" alt="Imagem de um Waffle Clássico">
<figcaption>Receita de Waffle Clássico</figcaption>
</figure>
<section>
<h2 class="subtitle">Ingredientes</h2>
<ul>
<li>2 xícaras (chá) de farinha de trigo</li>
<li>2 colheres (sopa) de açucar</li>
<li>2 colheres (chá) de fermento em pó</li>
<li>1/2 colher (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>
</section>
<section>
<h2 class="subtitle">Modo de preparo</h2>
<ol>
<li>Peneira em um recipiente a farinha de trigo, o açucar, 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>
</section>
<section>
<h2 class="subtitle">Informações adicionais</h2>
<p>Você poderá servir estes Waffles no café da manhã com geléia.</p>
</section>
</main>
<footer>
<p>Desenvolvido por <a href="https://github.com/LucasGabriell97">Lucas Gabriell</a> - 2021</p>
</footer>
</body>
</html>