-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-typography2.html
48 lines (37 loc) · 1.42 KB
/
example-typography2.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/css/custom.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<title>Typography Example</title>
</head>
<body>
<div class="container">
<div class="text-nowrap" style="width: 8rem;">
This text should overflow the parent.
</div>
<!-- Block level -->
<div class="row mb-5">
<div class="col-2 text-truncate bg-success text-dark text-bold h1">
Praeterea iter est quasdam res quas ex communi.
</div>
</div>
<h2>Code Example</h2>
To switch directories, type
<kbd>cd</kbd> followed by the name of the directory.
<br> To edit settings, press
<kbd>
<kbd>ctrl</kbd> +
<kbd>,</kbd>
</kbd>
</div>
<script src="node_modules/jquery/dist/jquery.slim.js"></script>
<script src="node_modules/popper.js/dist/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>