-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
42 lines (39 loc) · 1.49 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
<body>
<header>
<h1>Meu Blog Tech</h1>
<p>Vou compartilhar conhecimentos sobre tecnologia e programação</p>
</header>
<main>
<article>
<img src="img/imagem-blog.jpg" alt="A imagem transmite tecnologia">
<div>
<h2>Meu primeiro post</h2>
<p class="artigo-autor">Por: João Miguel</p>
<p>Boas vindas ao meu novo blog! </p>
<p>Aqui vou compartilhar
dicas de programação e curiosidades da área de tecnologia</p>
<button>❤️ <span>0</span></button>
<button>👍 <span>0</span></button>
</div>
</article>
<article>
<img src="img/imagem-blog.jpg" alt="A imagem transmite não a fake news">
<div>
<h2>Fake News</h2>
<p class="artigo-autor">Dicas para Identificar Notícias Falsas</p>
<p class="texto-curto">Não leia só o título: Títulos chamativos costumam ser apelativos e não
correspondem ao texto real.</p>
<p class="texto-curto">Confira a fonte: Veja se o autor e o veículo de comunicação existem e são
respeitados.</p>
<p class="texto-curto">Cheque a data: Conteúdos antigos costumam ser republicados fora de contexto para
parecerem atuais.</p>
<button>❤️ <span>0</span></button>
<button>👍 <span>0</span></button>
</div>
</article>
</main>
<footer>
<p>© 2026 Meu Blog Tech - Página web: do zero à primeira interação</p>
</footer>
<script src="script.js"></script>
</body>