-
Notifications
You must be signed in to change notification settings - Fork 0
/
ESTRUTURA E SEMANTICA HTML5.html
62 lines (60 loc) · 1.57 KB
/
ESTRUTURA E SEMANTICA HTML5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- Cabeçalho-->
<header> < !-- Definir cabeçalho e grupo de titulos-- >
<hgroup>
<h1></h1>
<h2></h2>
</hgroup>
<nav>
<ul>
<li>
<href ="#"> link 1</a >
</li>
</ul>
</nav>
</header>
<!--Conteudo-->
<main>
<article>
<header>
<h2>titulo do artigo</h2>
<p>Subtitulo</p>
</header>
<header>
<figure> <img src="Palavrachave" alt="" width="950px" height="210px"/> </figure>
<aside>
<p>Descrição da figura</p>
</aside>
<footer>
<p>Postado por....</p>
<time datetime>data da psotagem"</time>
</footer>
</article>
</main>
<!--Sidebar com relação ao artigo-->
<aside>
<section>
<h2>Seção do artigo relacionado</h2>
<p>Conteudo da seção1</p>
</section>
<section>
<h2>Destaques</h2>
<p>Cont. seção2</p>
</section>
<section>Novidades
<p>Cont.seção3</p>
</section>
</aside>
</header>
<footer>Rodapé</footer>
</body>
</html>
<!--cANAL YOUTUBE :( https://www.youtube.com/watch?v=jEJUopJv12I);https://www.youtube.com/watch?v=HaSgt1hK2Fs -->