-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (70 loc) · 2.58 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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.html">Eletrônicos</a>
</div>
</div>
<div id="area-principal">
<div id="area-postagens">
<!-- abertra postagem-->
<div class="postagem">
<h2>Título da postagem 1</h2>
<span class="data-postagem"> Postado em DIA MES ANO</span>
<img width="620px" src="imagens/imagem1.jpg">
<p> 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.
</p>
<a href=""> Leia Mais </a>
</div>
<!--// fechamento postagem-->
<!-- abertra postagem-->
<div class="postagem">
<h2>Título da postagem 2</h2>
<span class="data-postagem"> Postado em DIA MES ANO</span>
<img width="620px" src="imagens/imagem2.jpg">
<p> 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.
</p>
<a href=""> Leia Mais </a>
</div>
<!--// fechamento postagem-->
</div>
<div id="area-lateral">
<div class="conteu-lateral">
<h3>Postagens recentes</h3>
<div class="postagem-lateral">
<p>is simply dummy text of the printing and typesetting industry.</p>
<a href="">Leia mais</a>
</div>
<div class="postagem-lateral">
<p>is simply dummy text of the printing and typesetting industry.</p>
<a href="">Leia mais</a>
</div>
</div>
<div class="conteu-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><br>
<a href="">Jogos</a><br>
</div>
</div>
<div id="rodape">
Todos os direitos reservados
</div>
</div>
</body>
</html>