-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypography.html
More file actions
127 lines (107 loc) · 5.55 KB
/
typography.html
File metadata and controls
127 lines (107 loc) · 5.55 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!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="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<title>Hello, world!</title>
</head>
<body>
<div class="container bg-secondary">
<p class="display-4 bg-primary">display 4 is the smallest</p>
<h4 class="bg-success">heading 4 is the smallest<small> and a secondary h1 by small tag</small></h4>
<p class="bg-info">Hi! I'm <mark>highlighted!</mark> and powered by <abbr title="gathering the world">Green Tile</abbr></p>
<blockquote class="blockquote bg-light">
<p>The people who are crazy enough to think they can change the world are the ones who do</p>
<footer class="blockquote-footer">Steve Jobs</footer>
</blockquote>
<dl class="bg-warning text-info">
<dt>Coffee</dt>
<dd>is a some drink</dd>
<dt>Milk</dt>
<dd>some better drink</dd>
</dl>
<ul class="list-unstyled bg-info">
<li>hello</li>
<li>im a</li>
<li>unstyled list</li>
<li>
<ul>
<li>but not applied</li>
<li>to nested lists</li>
</ul>
</li>
<li>ok?</li>
</ul>
<ul class="list-inline bg-success">
<li class="list-inline-item">coffee</li>
<li class="list-inline-item">milk</li>
<li class="list-inline-item">tea</li>
<li class="text-dark">thas an inline list and im also a child but not inline</li>
</ul>
<p class="bg-light">i wanna introduce a HTML tag that is: <code> code tag for showing codes </code> to how code blocks</p>
<p class="bg-light">use <kbd>ctrl+p</kbd> to print something</p>
<pre class="pre-scrollable bg-light">
if u want to add spaces
and line breaks manually just
use "pre" tag
and if u wanna have
a scrollable one
just use pre-scrollable class
if u want to add spaces
and line breaks manually just
use "pre" tag
and if u wanna have
a scrollable one
just use pre-scrollable class
if u want to add spaces
and line breaks manually just
use "pre" tag
and if u wanna have
a scrollable one
just use pre-scrollable class
</pre>
<p class="bg-light text-success">im <span class="font-weight-bold">bold</span>
<span class="font-weight-normal">normal</span>
<span class="font-weight-light">light</span>
<span class="font-italic">italic</span>
<br>
<span class="lead">im somehow bigger and lighter</span> u see?
<br>
I have a kid<span class="small"> im im the kiiiid!!!</span> oh my darling :-*
</p>
<div class="bg-warning">
<p class="text-left">im in the right!</p>
<p class="text-right">and im left!!</p>
<p class="text-center">im centered!!</p>
<p class="text-nowrap">never try to put me in limitation:)))))
never try to put me in limitation:)))))
never try to put me in limitation:)))))</p>
<p class="text-justify">but im shaped.. in any size u want <3
but im shaped.. in any size u want <3
but im shaped.. in any size u want <3
but im shaped.. in any size u want <3</p>
<p class="text-lg-right">im sometimes on some screens <span class="text-dark">right aligned</span>, centered or left</p>
<p>oh i <span class="text-primary"><span class="text-monospace">love</span> love</span> monospaced text</p>
</div>
<div class="bg-info">
<p class="text-lowercase"> IM LOOKING SMALL AM I NOT?</p>
<p class="text-uppercase">im looking big am i not?</p>
<p class="text-capitalize">im looking like what? ..ohh maamnoon man ye maaz baardaram baaram</p>
<abbr title="no initialism addes">hover to see the beyond</abbr> what??
<abbr title="initialism class used" class="initialism">. yes im 10% smaller abbreviation but uppercase</abbr>
</div>
<div class="row">
<div class="col-sm-5 bg-danger">col</div>
<div class="col-sm-7 bg-light">col</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
</body>
</html>