-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaula1-2i.html
46 lines (35 loc) · 1.35 KB
/
aula1-2i.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title> Aula1 - Estrutura básica</title>
<meta charset="UTF-8">
</head>
<body>
<!--Inserir comentário no HTML-->
<h1>Hierarquia de Títulos</h1>
<hr> <!--Insere uma linha na horizontal-->
<h1>Nivel 1 </h1>
<h2>Nivel 2 </h2>
<h3>Nivel 3 </h3>
<h4>Nivel 4 </h4>
<h5>Nivel 5 </h5>
<h6>Nivel 6 </h6>
<br> <!--Inserir quebra de linha-->
<hr> <!--Insere uma linha na horizontal-->
<!--Cor de fonte e tamanho de fonte-->
<font color=#A020F0 size=4>
<!--Alinhamento de texto-->
<h2 align=center>Título Centralizado</h2>
<font color=#4B0082 size=4>
<h2 align=right>Título À Direita</h2>
<font color=#7CFC00 size=4>
<h2 align=left> Título À Esquerda</h2>
<hr color=#DC143C size="7"> <!--Insere uma linha na horizontal-->
<!--Cor de fonte e tamanho de fonte do texto-->
<font color=#DC143C size=4>
<p>A tag <strong>html</strong> é utilizada para informar ao navegador que tipo de estrutura está sendo construída, podendo ter
<strong>títulos, parágrafos, imagens, links, entre outros</strong>.</p>
<p>Existem diversas tags do HTML, mas as principais são: <em>title, meta, head, body, footer e div</em>.</p>
<p>Dentro dessa tag, é necessário declarar outras duas tags: <u>head e body</u>.</p>
</body>
</html>