-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (67 loc) · 3.99 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
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>TecBlog - O seu Blog de tecnologia </title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/estilo.css">
</head>
<body>
<div id="area-cabecalho">
<div id="area-logo">
<h1>Tec<span class="branco">Blog</span></h1>
</div>
<div id="area-menu">
<a href="index.html">Home</a>
<a href="jogos.html">Jogos</a>
<a href="celulares.html">Celulares</a>
<a href="informatica.html">Informática</a>
<a href="eletronicos">Eletrônicos</a>
</div>
</div>
<div id="area-principal">
<div id="area-postagens">
<!-- abertura postagem -->
<div class="postagem">
<h2>Título da postagem 1</h2>
<span class="data-postagem">postado 20 de março de 2022</span>
<img width=620px src="imagem/imagem1.jpg">
<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, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<a href="">Leia mais</a>
</div>
<!-- fechamento postagem -->
<!-- abertura postagem -->
<div class="postagem">
<h2>Título da postagem 2</h2>
<span class="data-postagem">postado 10 de março de 2022</span>
<img width=620px src="imagem/imagem2.jpg">
<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, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<a href="">Leia mais</a>
</div>
<!-- fechamento postagem -->
</div>
<div id="area-lateral">
<div class="conteudo-lateral">
<h3>Postagens Recentes</h3>
<div class="postagem-lateral">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<a href="">Leia mais</a>
</div>
<div class="postagem-lateral" style="border-bottom: none;">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<a href="">Leia mais</a>
</div>
</div>
<div class="conteudo-lateral">
<h3>Categorias</h3>
<a href="">Jogos</a><br>
<a href="">Celulares</a><br>
<a href="">Informática</a><br>
<a href="">Eletrônicos</a>
</div>
</div>
<div id="rodape">
Todos os direitos reservados
</div>
</div>
</body>
</html>