-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (120 loc) · 4.05 KB
/
index.html
File metadata and controls
123 lines (120 loc) · 4.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style.css">
<title>Document</title>
</head>
<body>
<section class="container">
<h3>Colors</h3>
<section class="color">
<p id="color1">
Pink <br />
#FF2DD0
</p>
<p id="color2">
Purple <br />
#8A30F1
</p>
<p id="color3">
Lime <br />
#E0FC53
</p>
<p id="color4">
Blue <br />
#608FF9
</p>
</section>
<div class="containerTexts">
<section class="textContainer" id="textContainer1">
<h3>Fonts</h3>
<article class="sectionContainer">
<p class="fontTitle">Font: Geneva</p>
<article class="fonts1">
<p id="text1">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p>
<p id="text2">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p>
<p id="text3">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p>
</article>
</article>
<article class="sectionContainer">
<p class="fontTitle">Font: URW Chancery</p>
<article class="fonts1">
<p id="text4">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p>
<p id="text5">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p>
<p id="text6">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p>
</article>
</article>
<article class="sectionContainer">
<p class="fontTitle">Font: Bahnschrift</p>
<article class="fonts1">
<p id="text7">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p>
<p id="text8">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p>
<p id="text9">
“As a programmer, it is your job to put yourself out of business.
What you do today can be automated tomorrow.” - Doug McIlroy
</p></section>
<section class="textContainer" id="textContainer2">
<article class="textStyle">
<h3>Text Styles</h3>
<article class="styles" id="style1">
<h1 class="textHeader">H1: Main page heading</h1>
<hr>
<br>
<ul>
<li>Font-weight: 700 (bold)</li>
<li>Font-size 2.5rem</li>
<li>Font-family: georgia</li>
</ul>
</article>
<article class="styles" id="style2">
<h2>H2: Subheading</h2>
<hr>
<br>
<ul>
<li>Font-weight: 500</li>
<li>Font-size 1.75rem</li>
<li>Font-family: Bahnschrift</li>
</ul>
</article>
<article class="styles" id="style3">
<p class="style3">P: paragraph tag</p>
<hr>
<br>
<ul>
<li>Font-weight: 400 (regular)</li>
<li>Font-size 1.1rem</li>
<li>Font-family: URW Chancery</li>
</ul>
</article>
</article>
</section>
</div>
</body>
</html>