-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathestrutura.html
137 lines (136 loc) · 3.71 KB
/
estrutura.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Estrutura HTML5</title>
</head>
<body>
<header>
<h1>Estutura de HTML5</h1>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="#seccao-especial">Secção especial</a>
</li>
<li>
<a href="#0">Contactos</a>
<ul>
<li>
<a href="#0">Apoio</a>
</li>
<li>
<a href="#0">Localização</a>
</li>
</ul>
</li>
<li>
<a href="#0">Sobre</a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Notícias</h2>
<article>
<h3>Chuva torrencial em lisboa</h3>
<p>Lá para o norte está-se melhor</p>
<a href="#0" title="Ler artigo chuva em lisboa">Ler mais</a>
</article>
<article>
<h3>Novidades a caminho</h3>
<p>Estamos quase no CSS</p>
<a href="#0" title="fica a conhecer o programa de CSS">Ler mais</a>
</article>
</section>
<section>
<h2>Notícias</h2>
<article>
<h3>Chuva torrencial em lisboa</h3>
<p>Lá para o norte está-se melhor</p>
<a href="#0" title="Ler artigo chuva em lisboa">Ler mais</a>
</article>
<article>
<h3>Novidades a caminho</h3>
<p>Estamos quase no CSS</p>
<a href="#0" title="fica a conhecer o programa de CSS">Ler mais</a>
</article>
</section>
<section>
<h2>Notícias</h2>
<article>
<h3>Chuva torrencial em lisboa</h3>
<p>Lá para o norte está-se melhor</p>
<a href="#0" title="Ler artigo chuva em lisboa">Ler mais</a>
</article>
<article>
<h3>Novidades a caminho</h3>
<p>Estamos quase no CSS</p>
<a href="#0" title="fica a conhecer o programa de CSS">Ler mais</a>
</article>
</section>
<section>
<h2>Notícias</h2>
<article>
<h3>Chuva torrencial em lisboa</h3>
<p>Lá para o norte está-se melhor</p>
<a href="#0" title="Ler artigo chuva em lisboa">Ler mais</a>
</article>
<article>
<h3>Novidades a caminho</h3>
<p>Estamos quase no CSS</p>
<a href="#0" title="fica a conhecer o programa de CSS">Ler mais</a>
</article>
</section>
<section id="seccao-especial">
<h2>ESTOU NUMA SECCAO DIFERENTE AQUI!</h2>
<article>
<h3>Chuva torrencial em lisboa</h3>
<p>Lá para o norte está-se melhor</p>
<a href="#0" title="Ler artigo chuva em lisboa">Ler mais</a>
</article>
<article>
<h3>Novidades a caminho</h3>
<p>Estamos quase no CSS</p>
<a href="#0" title="fica a conhecer o programa de CSS">Ler mais</a>
</article>
</section>
<section>
<h2>Notícias</h2>
<article>
<h3>Chuva torrencial em lisboa</h3>
<p>Lá para o norte está-se melhor</p>
<a href="#0" title="Ler artigo chuva em lisboa">Ler mais</a>
</article>
<article>
<h3>Novidades a caminho</h3>
<p>Estamos quase no CSS</p>
<a href="#0" title="fica a conhecer o programa de CSS">Ler mais</a>
</article>
</section>
<section>
<h2>Notícias</h2>
<article>
<h3>Chuva torrencial em lisboa</h3>
<p>Lá para o norte está-se melhor</p>
<a href="#0" title="Ler artigo chuva em lisboa">Ler mais</a>
</article>
<article>
<h3>Novidades a caminho</h3>
<p>Estamos quase no CSS</p>
<a href="#0" title="fica a conhecer o programa de CSS">Ler mais</a>
</article>
</section>
<aside>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Omnis asperiores sunt dolorum ex, ipsa debitis et deserunt dolorem ut, quis officia mollitia cum ad reprehenderit sit voluptas
beatae tempore repellendus?
</p>
</aside>
</main>
</body>
</html>