-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (98 loc) · 3.79 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
<!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 href="styles.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Montserrat&family=Open+Sans&display=swap" rel="stylesheet">
<title>Website Design System</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#colors">Colors</a></li>
<li><a href="#fonts">Fonts</a></li>
<li><a href="#text-styles">Text Styles</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="title">
<h1>My Website Style Guide</h1>
</div>
<div class="container">
<div id="colors">
<h2>Colors</h2>
<div class="pallete">
<div class="blue color">
<p>Cool Blue</p>
<p>rgb(0, 0, 255)</p>
</div>
<div class="pink color">
<p>Pink</p>
<p>rgb(255, 182, 193)</p>
</div>
<div class="mint-green color">
<p>Mint Green</p>
<p>rgb(152, 255, 152)</p>
</div>
<div class="beige color">
<p>Beige</p>
<p>rgb(244, 226, 198)</p>
</div>
</div>
</div>
</div>
<div class="container">
<div id="fonts">
<h2>Fonts</h2>
<div class="sans-serif">
<div class="open-sans font">
<h4>Open Sans</h4>
<p>The quick brown fox jumps over the lazy dog.</p>
<p><strong>The quick brown fox jumps over the lazy dog.</strong></p>
<p><em>The quick brown fox jumps over the lazy dog.</em></p>
</div>
<div class="montserrat font">
<h4>Monserrat</h4>
<p>The quick brown fox jumps over the lazy dog.</p>
<p><strong>The quick brown fox jumps over the lazy dog.</strong></p>
<p><em>The quick brown fox jumps over the lazy dog.</em></p>
</div>
<div class="josefin-sans font">
<h4>Josefin Sans</h4>
<p>The quick brown fox jumps over the lazy dog.</p>
<p><strong>The quick brown fox jumps over the lazy dog.</strong></p>
<p><em>The quick brown fox jumps over the lazy dog.</em></p>
</div>
</div>
</div>
</div>
<div class="container">
<div id="text-styles">
<h2>Text Styles</h2>
<div class="style">
<p>This is a paragraph that styled using the properties and values below.</p>
<div class="code">
<h3>Font Size</h3>
<pre>font-size: 16px;</pre>
</div>
<div class="code">
<h3>Font Weight</h3>
<pre>font-weight: bold;</pre>
</div>
<div class="code">
<h3>Font Family</h3>
<pre>font-family: 'Open Sans', sans-serif;</pre>
</div>
</div>
</div>
</div>
</div>
<footer>
<p>© Josh Perez 2021</p>
</footer>
</body>
</html>