-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
159 lines (154 loc) · 6.35 KB
/
example.html
File metadata and controls
159 lines (154 loc) · 6.35 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Typography Examples</title>
<!-- Roboto Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,700i" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:200|Source+Code+Pro:700" rel="stylesheet" />
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<!-- <article> -->
<div id="headerContainer">
<div>
<div id="nav-icon">
<span></span> <span></span> <span></span> <span></span>
</div>
<div id="menuItems">
<a href="index.html">
<h4>Home</h4>
</a>
<a href="example.html">
<h4>Examples</h4>
</a>
<a href="vocabulary.html">
<h4>Vocabulary</h4>
</a>
</div>
</div>
<div id="layeredTextExample">
<div class="textLayerContainer">
<div class="topTextLayer">Typo</div>
<div class="bottomTextLayer">graphy</div>
</div>
<div class="textLayerContainer">
<div class="topTextLayer">Is</div>
<div class="bottomTextLayer">Important</div>
</div>
<div class="textLayerContainer">
<div class="topTextLayer">It</div>
<div class="bottomTextLayer">Changes</div>
</div>
<div class="textLayerContainer">
<div class="topTextLayer">The</div>
<div class="bottomTextLayer">Message</div>
</div>
</div>
</div>
<!-- </article> -->
<article>
<div class="btnArrowContainer">
<button class="btn-arrow">
<i id="downArrow" class="fas fa-arrow-down"></i>
<i id="upArrow" class="fas fa-arrow-up removeElement"></i>
</button>
</div>
<div id="leftAlignContainer">
<div id="exampleTitle">
<h2>
<span class="webScreen">//<span>examples</span>//</span>
<span class="tabletScreen">examples</span>
<span class="mobileScreen">examples</span>
</h2>
</div>
<div class=" exampleContainer">
<img src="images/bullet_1.svg" />
<div class="margin96Left">
<p id="timesNewRoman">
She stared through the window at the stars. Almost before she knew
it she had left the ground.
</p>
<div class="body3">
<!-- Can be shortened but easier to read this way -->
<span class="webScreen tabletScreen">
<strong style="margin-left:0px;">Typeface:</strong> Times New
Roman <strong>Weight:</strong> Regular<br />
<strong style="margin-left:0px;">Size:</strong> 48 pt
<strong>Leading:</strong> 30pt<strong>Tracking:</strong> 25
</span>
<span class="fontExampleDetails mobileScreen">
<strong>Typeface:</strong> Times New Roman<br />
<strong>Weight:</strong> Regular<br />
<strong>Size:</strong> 32 pt <br />
<strong>Leading:</strong> 30pt <br />
<strong>Tracking:</strong> 25
</span>
</div>
</div>
</div>
<div class="exampleContainer">
<img src="images/bullet_2.svg" />
<div class="margin96Left">
<p id="nunitoSans">
She stared through the window at the stars. Almost before she knew
it she had left the ground.
</p>
<div class="body3">
<span class="webScreen tabletScreen">
<strong style="margin-left:0px;">Typeface:</strong> Nunito Sans
<strong>Weight:</strong> Thin<br />
<strong style="margin-left:0px;">Size:</strong> 36 pt
<strong>Leading:</strong> 45pt<strong>Tracking:</strong> 25
</span>
<span class="fontExampleDetails mobileScreen">
<strong>Typeface:</strong> Nunito Sans<br />
<strong>Weight:</strong> Thin<br />
<strong>Size:</strong> 28 pt <br />
<strong>Leading:</strong> 20pt <br />
<strong>Tracking:</strong> 25
</span>
</div>
</div>
</div>
<div class="exampleContainer">
<img src="images/bullet_3.svg" />
<div class="margin96Left">
<p id="sourceCodePro">
She stared through the window at the stars. Almost before she knew
it she had left the ground.
</p>
<span class="webScreen tabletScreen">
<div class="body3">
<strong style="margin-left:0px;">Typeface:</strong> Source Code
Pro <strong>Weight:</strong> Bold<br />
<strong style="margin-left:0px;">Size:</strong> 40 pt
<strong>Leading:</strong> 40pt<strong>Tracking:</strong> 35
</div>
</span>
<span class="fontExampleDetails mobileScreen">
<strong>Typeface:</strong> Nunito Sans<br />
<strong>Weight:</strong> Thin<br />
<strong>Size:</strong> 28 pt <br />
<strong>Leading:</strong> 20pt <br />
<strong>Tracking:</strong> 25
</span>
</div>
</div>
<div style="text-align: center;">
<a href="vocabulary.html">
<button>
<span class="webScreen">Learn Type Vocabulary</span>
<span class="tabletScreen">Learn Vocabulary</span>
<span class="mobileScreen">Vocabulary</span>
</button>
</a>
</div>
</div>
</article>
<script src="javascript/index.js"></script>
</body>
</html>