-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaula1.5.html
More file actions
155 lines (144 loc) · 5.14 KB
/
aula1.5.html
File metadata and controls
155 lines (144 loc) · 5.14 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projeto Site com Ecommerce - Prática</title>
<link rel="stylesheet" href="css/aula15.css" />
</head>
<body>
<!-- Topo -->
<header>
<h1>
<img src="../Imagens/Logos/logo-codeblue.png" alt="CodeBlue" />
</h1>
</header>
<!-- Conteúdo Home -->
<main>
<!-- Banner Principal -->
<figure class="banner-principal">
<img
src="../Imagens/Fotos/familia-na-praia.jpg"
alt="Família na Praia"
/>
</figure>
<!-- Artigos -->
<section class="container">
<section class="artigo artigo1">
<figure>
<img
src="../Imagens/Fotos/img-placeholder.png"
alt="Menina Olhando para a câmera"
/>
</figure>
<article>
<h2>Lorem Ipsum is simply dummy text</h2>
<p>
<strong>Lorem ipsum</strong> dolor sit amet consectetur,
adipisicing elit. Veritatis mollitia, molestiae deleniti tempora
dolorum aliquam voluptatem provident deserunt a assumenda.
</p>
</article>
</section>
<section class="artigo artigo2">
<article>
<h2>Lorem Ipsum is simply dummy text</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever <strong>since the 1500s.</strong>
</p>
<br />
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard
<strong>dummy text</strong> ever since the 1500s.
</p>
</article>
<figure>
<img
src="../Imagens/Fotos/img-placeholder1.png"
alt="menina olhando para cãmera"
/>
</figure>
</section>
<!-- Conheça -->
<section class="conheca">
<h3>Conheça</h3>
<section>
<article>
<figure>
<img src="../Imagens/Fotos/conheça1.png" alt="" />
</figure>
<p><strong>Lorem Ipsum is simply</strong> dummy text</p>
<p><a href="#">Descubra</a></p>
</article>
<article>
<figure>
<img src="../Imagens/Fotos/conheça2.png" alt="" />
</figure>
<p><strong>Lorem Ipsum is simply</strong> dummy text</p>
<p><a href="#">Descubra</a></p>
</article>
<article>
<figure>
<img src="../Imagens/Fotos/conheça3.png" alt="" />
</figure>
<p><strong>Lorem Ipsum is simply</strong> dummy text</p>
<p><a href="#">Descubra</a></p>
</article>
</section>
</section>
</section>
<!-- Receitas -->
<section class="receita1">
<section class="container">
<article>
<figure>
<img src="../Imagens/Fotos/receita1.png" alt="mulher pulando" />
</figure>
<article>
<h2>Lorem Ipsum is simply dummy text of the</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s
</p>
<p>
Lorem Ipsum is simply dummy text of the printing and
<strong>typesetting industry</strong>. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s
</p>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard
<strong>dummy text</strong> ever since the 1500s
</p>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s
</p>
</article>
</article>
<h3>Dica</h3>
<article class="dica">
<figure>
<img src="../Imagens/Fotos/receita2.png" alt=" video fake" />
</figure>
<article>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s. Lorem Ipsum is simply dummy text of
the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s.
</p>
<p>#Exemple</p>
</article>
</article>
</section>
</section>
</main>
</body>
</html>