-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrimeiro-layout.html
More file actions
48 lines (48 loc) · 1.08 KB
/
Primeiro-layout.html
File metadata and controls
48 lines (48 loc) · 1.08 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
<!doctype html>
<html>
<head>
<title> O Começo - Aula Sobre Layout </title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="estilo-2.css"/>
</head>
<body>
<div id="wrap">
<header>
<h1>Nome do Site</h1>
<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>
<div id="content">
<section>
<h2>Título da seção</h2>
<p>Conteudo da seção</p>
</section>
<article>
<h2>Título do artigo</h2>
<p>Conteudo do artigo</p>
</article>
</div>
<div id="sidebar">
<aside>
<ul>
<li><a href="#">Submenu 1</a></li>
<li><a href="#">Submenu 2</a></li>
<li><a href="#">Submenu 3</a></li>
<li><a href="#">Submenu 4</a></li>
<li><a href="#">Submenu 5</a></li>
</ul>
</aside>
</div>
<footer>
Rodapé do site
</footer>
</div>
</body>
</html>