-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Benne&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;1,300;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name ="viewport" content="width=device-width, initial-scale=1.0">
<title>Ficha Técnica</title>
</head>
<body>
<header>
<h1 id = "title"><p>AMAZON </p> <p> DELI</p></h1>
<h2>Ficha Técnica</h2>
<nav id = "navig"><h3><a href="#guarnição">Guarnição</a></h3>
<h3><a href="#cozinha">Cozinha</a></h3>
</nav>
</header>
<main>
<fieldset>
<legend id = "guarnição">Guarnição</legend>
<button class = "list">Ovo Mexido Cremoso</button>
<div class = "recipe" hidden>
<ul><h3><b>Ingredientes</b></h3>
<li>3 ovos</li>
<li>Manteiga</li>
<li>Requeijão/Cream Cheese</li>
</ul>
<ul><h3><b>Modo de Fazer</b></h3>
<li>Fritar os 3 ovos na frigideira até ficarem consistentes, em seguida adicionar a medida requerida de requeijão </li>
</ul>
<ul><h3><b>Rendimento</b></h3>
<li>1 porção</li>
</ul>
<ul><h3><b>Equipamentos</b></h3>
<li>Frigideira</li>
<li>Pá de silicone</li>
</ul>
</div>
<img src="https://www.imagemhost.com.br/images/2021/07/01/ovoapresentacao.jpg" alt="Apresentação do ovo mexido cremoso">
</fieldset>
<fieldset>
<legend id = "cozinha">Cozinha</legend>
</fieldset>
</main>
<script src="app.js"></script>
</body>
</html>