-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
50 lines (46 loc) · 1.67 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<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.jpeg" alt="A imagem transmite tecnologia">
<div>
<h2>Meu primeiro post</h2>
<p class="artigo-autor">Por: Catharina</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/images-fakeNews.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>
</footer>
</body>
</html>