This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypography.html
53 lines (49 loc) · 2.23 KB
/
typography.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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Women Dev Summit - Oficina de Bootstrap</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>Fontes</h1>
</div>
</div>
<hr>
<div class="row ">
<div class="col-md-4 ">
<h1>h1 - Cabeçalho 1</h1> <code><h1></code>
<h2>h2 - Cabeçalho 2</h2> <code><h2></code>
<h3>h3 - Cabeçalho 3</h3> <code><h3></code>
</div>
<div class="col-md-4 ">
<p> <strong> CODE <strong> <code><code></code> </p>
<p><strong> <mark>HIGHLIGHT</mark> <strong> <code><mark></code></p>
<p><strong> <del>CORTADO</del> <strong> <code><del></code></p>
<p><strong> <ins>SUBLINHADO</ins> <strong> <code><ins></code></p>
<p><strong> <em>ITÁLICO</em> <strong> <code><em></code></p>
<p class="text-center"><strong> CENTRO <strong> <code>class="text-center"</code></p>
<p class="text-left"><strong> ESQUERDA <strong> <code>class="text-left"</code></p>
<p class="text-right"><strong> DIREITA <strong> <code>class="text-right"</code></p>
<p class="text-justify"><strong> JUSTIFICADO <strong> <code>class="text-justify"</code></p>
</div>
<div class="col-md-4">
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
<blockquote class="blockquote-reverse">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
</body>
</html>