-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAula03.html
37 lines (36 loc) · 910 Bytes
/
Aula03.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Aula03 - Tags</title>
</head>
<body>
<h1 align="center">Aula 03 - Tags</h1>
<hr>
<h2>Tags</h2>
<ul type="circle">
<li>Base do HTML</li>
<li>Containers que informam aos Browsers quais elementos estão sendo utilizados na página</li>
<li>Toda TAG inicia com < e termina com ></li>
</ul>
<h2>Atributos das Tags</h2>
<ul type="circle">
<li>São as propriedades de uma tag</li>
<li>Cada tag pode ter vários atributos</li>
<li>Os atributos não são iguais para todas as tags</li>
<li>Ajudam a "configurar" a tag</li>
</ul>
<h2>Tags Header</h2>
<ul>
<li>Seis tags header: h1 ao h6</li>
<li>H1 é o Header mais importante</li>
</ul>
<hr>
<h1>Header H1</h1>
<h2>Header H2</h2>
<h3>Header H3</h3>
<h4>Header H4</h4>
<h5>Header H5</h5>
<h6>Header H6</h6>
</body>
</html>