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