-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaula0.3.html
More file actions
26 lines (25 loc) · 771 Bytes
/
aula0.3.html
File metadata and controls
26 lines (25 loc) · 771 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>CSS</title>
<!-- CSS Linkado -->
<link rel="stylesheet" href="css/aula3.css" />
<!-- CSS Incorporado, fica na região head do documento -->
<style>
h1 {
color: blueviolet;
}
</style>
</head>
<body>
<!-- CSS Inline. é válido para tags específicas. Está mais perto d tag, então no efeito cascara ele é mais forte -->
<h1 style="color: grey">Raw It</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt
consequuntur voluptate neque fugiat autem, placeat optio nihil
perspiciatis quo qui explicabo id et dolore tenetur ipsam ex aliquid illum
recusandae.
</p>
</body>
</html>