-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (83 loc) · 3.43 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
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="../Basic Website Design System/styles.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Reddit+Sans+Condensed:[email protected]&family=Roboto:ital,wght@0,400;0,700;1,400&family=SUSE:[email protected]&display=swap" rel="stylesheet">
<title>My website style guide</title>
</head>
<div>
<h1>My website style guide</h1>
</div>
<body>
<!--Colors section-->
<div class="colors">
<h2>Colors </h2>
<p class="black">Black : hsl(0 0 0) </p>
<p class="purple">Purple aubergin : hsl(260 70% 35%)</p>
<p class="blue">Sky Blue : hsl(205 55% 50%)</p>
<p class="yellow">Pale yellow : hsl(60 90% 80%)</p>
</div>
<!--Fonts section-->
<div class="container">
<h2>Fonts</h2>
<div class="font-container">
<div class="font-panel">
<p class="font-label-SUSE"> SUSE</p>
<p class="regular-SUSE"> Whereas recognition of the inherent dignity</p>
<p class="bold-SUSE"> Whereas recognition of the inherent dignity</p>
<p class="italic-SUSE"> Whereas recognition of the inherent dignity</p>
</div>
</div>
<div class="font-panel">
<p class="font-label-Roboto"> Roboto</p>
<p class="regular-Roboto"> Whereas recognition of the inherent dignity</p>
<p class="bold-Roboto"> Whereas recognition of the inherent dignity</p>
<p class="italic-Roboto"> Whereas recognition of the inherent dignity</p>
</div>
<div class="font-panel">
<p class="font-label-Reddit-Sans-Condensed"> Reddit Sans Condensed</p>
<p class="regular-Reddit-Sans-Condensed"> Whereas recognition of the inherent dignity</p>
<p class="bold-Reddit-Sans-Condensed"> Whereas recognition of the inherent dignity</p>
<p class="italic-Reddit-Sans-Condensed"> Whereas recognition of the inherent dignity</p>
</div>
</div>
<!--Styles section-->
<div class="container">
<h2>Text Styles</h2>
<div class="Main-Heading">
<h1>H1 : Main page heading</h1>
<div class="H1-List">
<ul>
<li>font-weight: 700 (bold)</li>
<li>font-size: 40px</li>
<li>font-family: 'SUSE'</li>
</ul>
</div>
</div>
<div class="Sub-Heading">
<h2>H2 : Subheading</h2>
<div class="H2-List">
<ul>
<li>font-weight: 700 (bold)</li>
<li>font-size: 1.5em</li>
<li>font-family: 'Roboto'</li>
</ul>
</div>
</div>
<div class="Paragraph-Text">
<p>P : Paragraph Text</p>
<div class="Paragraph-List">
<ul>
<li>font-weight: 700 (bold)</li>
<li>font-size: Large</li>
<li>font-family: 'Reddit Sans Condensed'</li>
</ul>
</div>
</div>
</div>
</body>
</html>