-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (111 loc) · 3.53 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!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="styles.css" />
<title>Design Tutorial</title>
</head>
<body>
<header>
<h1>My Website Style Guide</h1>
</header>
<div class="container">
<h2>Colors</h2>
<div class="color-container">
<div class="color-panel color-blue">
<p>Color Blue</p>
<p>#2d5dcc</p>
</div>
<div class="color-panel color-pink">
<p>Color Pink</p>
<p>#d957d9</p>
</div>
<div class="color-panel color-green">
<p>Mint Green</p>
<p>#4fe0b0</p>
</div>
<div class="color-panel color-beige">
<p>Beige</p>
<p>#efd9ca</p>
</div>
</div>
</div>
<!-- Fonts section -->
<div class="container">
<h2>Fonts</h2>
<div class="font-container">
<div class="font-panel">
<p class="label source-code-pro">Source Code Pro</p>
<p class="regular-font source-code-pro">
The quick brown fox jumps over the lazy dog.
</p>
<p class="bold-font source-code-pro">
The quick brown fox jumps over the lazy dog.
</p>
<p class="italic-font source-code-pro">
The quick brown fox jumps over the lazy dog.
</p>
</div>
<!-- Nunito Sans -->
<div class="font-panel">
<p class="label nunito-sans">Nunito Sans</p>
<p class="regular-font nunito-sans">
The quick brown fox jumps over the lazy dog.
</p>
<p class="bold-font nunito-sans">
The quick brown fox jumps over the lazy dog.
</p>
<p class="italic-font nunito-sans">
The quick brown fox jumps over the lazy dog.
</p>
</div>
<!-- Poppins -->
<div class="font-panel">
<p class="label poppins-font">Poppins</p>
<p class="regular-font poppins-font">
The quick brown fox jumps over the lazy dog.
</p>
<p class="bold-font poppins-font">
The quick brown fox jumps over the lazy dog.
</p>
<p class="italic-font poppins-font">
The quick brown fox jumps over the lazy dog.
</p>
</div>
</div>
</div>
<!-- Heading section -->
<div class="container">
<h2>Text Styles</h2>
<div class="heading-container">
<div class="heading-panel">
<h1>H1: Main page heading</h1>
<ul class="list">
<li>Font-weight: 700 (bold)</li>
<li>Font-size: 26px</li>
<li>Font-family: Nunito Sans</li>
</ul>
</div>
<div class="heading-panel">
<h2>H2: Subheading</h1>
<ul class="list">
<li>Font-weight: 500</li>
<li>Font-size: 18px</li>
<li>Font-family: Poppins</li>
</ul>
</div>
<div class="heading-panel">
<p>P: Paragraph Text</p>
<ul class="list">
<li>Font-weight: 400 (regular)</li>
<li>Font-size: 14px</li>
<li>Font-family: Poppins</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>