-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (89 loc) · 4.45 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<title>Mortar & Pestle Records Stylesheet</title>
<link href='styles.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div class ='title'>
<h1>Mortar & Pestle Records Stylesheet</h1>
<img src='images/logo.png' alt='logo in yellow'>
</div>
<h2 class='subheading'>Colors</h2>
<section id='colors'>
<div class='color' id='bright-gold'>
<h3 class='bright-gold'>Bright Gold </h3>
<ul class='bright-gold'>
<li class='bright-gold'>#cfa153</li>
<li class='bright-gold'>rgb(207, 161, 83)</li>
<li class='bright-gold'>hsl(38, 56%, 57%)</li>
<li class='bright-gold'>cmyk(0%, 22%, 60%, 19%)</li>
</ul>
</div>
<div class='color' id='black-6c'>
<h3 class='black-6c'>Black 6c</h3>
<ul class ='black-6c'>
<li class ='black-6c'>#231f20</li>
<li class ='black-6c'>rgb(35, 31, 32)</li>
<li class ='black-6c'>hsl(345, 6%, 13%)</li>
<li class ='black-6c'>cmyk(0%, 11%, 9%, 86%)</li>
</ul>
</div>
<div class='color' id='bright-white'>
<h3 class='bright-white'>Bright White</h3>
<ul class ='bright-white'>
<li class ='bright-white'>#ffffff</li>
<li class ='bright-white'>rgb(255, 255, 255)</li>
<li class ='bright-white'>hsl(0, 0%, 100%)</li>
<li class ='bright-white'>cmyk(0%, 0%, 0%, 0%)</li>
</ul>
</div>
</section>
<h2 class='subheading'>Fonts</h2>
<section id='fonts'>
<ul class='font-list'>
<li class='font'id='florent-bold-type'>Florent Bold Type</li>
<li class='font' id='florent-poster-two-outline'>Florent Poster Two Outline</li>
<li class='font' id='open-sans'>Open Sans</li>
</ul>
<ul class='font-list'>
<li class='font'id='florent-bold-type'>the lazy fox jumped over the brown dog</li>
<li class='font' id='florent-poster-two-outline'>the lazy fox jumped over the brown dog</li>
<li class='font' id='open-sans'>the lazy fox jumped over the brown dog</li>
</ul>
</section>
<h2 class='subheading'>Text Styles</h2>
<section id='text-styles'>
<div class='text-style'>
<h1>H1: Main Page Heading</h1>
<p><em><b>Florent Bold Type</b> shall be used for most main headings, although Florent Poster Two Outline will be considered an acceptable, ocassional alternative for black-background applications.</em></p>
<ul>
<li><b>Font-weight:</b> normal</li>
<li><b>Font-size:</b> xx-large</li>
<li><b>Font-family:</b> Florent-Poster-Two</li>
</ul>
</div>
<div class='text-style'>
<h2>H2: Subheading</h2>
<p><em><b>Open Sans Extra-Bold</b> shall be the font of choice for subheadings and similar applications.</em></p>
<ul>
<li><b>Font-weight:</b> 500</li>
<li><b>Font-size:</b> x-large</li>
<li><b>Font-family:</b> Open-Sans-Extra-Bold</li>
</ul>
</div>
<div class='text-style'>
<p>Paragraph Text</p>
<p><em><b>Open Sans</b> shall be the font of choice for body copy and other miscellaneous small text.</em></p>
<ul>
<li><b>Font-weight:</b> normal</li>
<li><b>Font-size:</b> large</li>
<li><b>Font-family:</b> Open Sans</li>
</ul>
</div>
</section>
<footer>
<p>This guide is designed by William Reginald Rhoda</p>
</footer>
</body>
</html>