-
Notifications
You must be signed in to change notification settings - Fork 4
/
typography-headings.html
42 lines (35 loc) · 1.38 KB
/
typography-headings.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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bootstrap Hcode</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<h1>Hcode Treinamentos</h1>
<h2>Hcode Treinamentos</h2>
<h3>Hcode Treinamentos</h3>
<h4>Hcode Treinamentos</h4>
<h5>Hcode Treinamentos</h5>
<h6>Hcode Treinamentos</h6>
<p class="h1">Hcode Treinamentos</p>
<p class="h2">Hcode Treinamentos</p>
<p class="h3">Hcode Treinamentos</p>
<p class="h4">Hcode Treinamentos</p>
<p class="h5">Hcode Treinamentos</p>
<p class="h6">Hcode Treinamentos</p>
<h1>Hcode <small>Treinamentos</small></h1>
<h2>Hcode <small>Treinamentos</small></h2>
<h3>Hcode <small>Treinamentos</small></h3>
<h4>Hcode <small>Treinamentos</small></h4>
<h5>Hcode <small>Treinamentos</small></h5>
<h6>Hcode <small>Treinamentos</small></h6>
</div>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>