-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula-2.html
33 lines (25 loc) · 948 Bytes
/
aula-2.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
<!DOCTYPE html>
<html>
<head>
<title>Aula de CSS e JavaScript</title>
<!--3°: Usando CSS a partir de um arquivo externo-->
<link rel="stylesheet" href="./estilos.css">
<!-- 2°: Usando CSS com a tag style-->
<style>
</style>
</head>
<body>
<!-- 1°: Usando CSS com o atributo style-->
<p style="color: black;">Isto é um parágrafo.</p>
<p>Novo parágrafo</p>
<p>Um novo parágrafo.</p>
<p id="principal">Quarto parágrafo.</p>
<span style="background-color: green;">Novo texto.</span>
<div id="divMaior">
<div class="chave espacamento">Esta é uma div.</div>
<div class="espacamento ">Esta é uma div sem classe</div>
<div class="chave espacamento">Esta é uma terceira div.</div>
</div>
<p class="chave">Este é um outro parágrafo.</p>
</body>
</html>