-
Notifications
You must be signed in to change notification settings - Fork 0
/
Estilos Css.html
31 lines (29 loc) · 1.65 KB
/
Estilos Css.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Estilos Css</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>ESTILOS CSS INLINE</h1>
<hr>
<h1>Capítulo 1</h1>
<h2>Capítulo 1.1</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nam inventore, voluptates saepe aliquid neque ad error. Asperiores soluta animi neque? Accusamus esse saepe quibusdam distinctio ex rem facilis voluptatem asperiores!</p>
<h2>Capítulo 1.2</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos nam sint perferendis iure exercitationem dolore sequi aut libero voluptates atque dolores, optio amet dolorem facilis fuga similique id cumque! Dolorem!</p>
<h1>Capítulo 2</h1>
<h2>Capítulo 2.1</h2>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Aperiam esse consequuntur sapiente consectetur eius maxime vero? Natus, velit totam qui dolor non esse ex molestiae quisquam inventore reiciendis rerum! Aperiam?</p>
<h1>Estilos Locais / Internos</h1>
<hr>
<p>No inicio do código colocar a tag <style> abaixo do title e depois a tag <body{}>, assim temos um style organizado e de fácil manutenção em algum projeto.</p>
<p>Confira <a href="Seletores.html" rel="next"> Seletores</a>
</p>
<p>Confira <a href="style externos.html" target="_self" rel="next"> Estilos Externos</a></p>
<p>Confira <a href="Cor Css.html" target="_self" rel="next">Cores em Css</a></p>
<a href="Principal.html" rel="prev"> Voltar </a>
</body>
</html>