-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNormalize.html
More file actions
39 lines (38 loc) · 931 Bytes
/
Normalize.html
File metadata and controls
39 lines (38 loc) · 931 Bytes
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
<!doctype html>
<html>
<head>
<title> CSS Normalize </title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>
<body>
<header>
Topo do site + menus de navegação
<nav>
<ul>
<li><a href="#">Menu 1</a></li>
<li><a href="#">Menu 2</a></li>
<li><a href="#">Menu 3</a></li>
<li><a href="#">Menu 4</a></li>
<li><a href="#">Menu 5</a></li>
</ul>
</nav>
</header>
<section>
<header><h1>Titulo da seção</h1></header>
<p>Conteudo da seção</p>
<footer>Rodapé da Seção</footer>
</section>
<article><header><h1>Titulo do artigo</h1></header>
<p>Conteudo do artigo</p>
<footer>Rodapé do artigo</footer>
</article>
<aside>
Barra Lateral
</aside>
<footer>
Rodapé do site
</footer>
</body>
</html>