-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (76 loc) · 3.06 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
<!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">
<title>Website design system</title>
<link rel="stylesheet" href="style.css" type="text/css" >
<link href="https://fonts.googleapis.com/css2?family=Stick+No+Bills&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Grey+Qo&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Grechen+Fuemen&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Website design system</h1>
</header>
<section>
<h3>Colors</h3>
<div class="colorboxes" id="color1">
<p class="colornames">aqua</p>
<p>rbg(0,255,255)</p>
<p>#00FFFF</p>
<p>hsl(180, 100%, 50%)</p>
</div>
<div class="colorboxes" id="color2">
<p class="colornames">blueviolet</p>
<p>rbg(138,43,226)</p>
<p>#8A2BE2</p>
<p>hsl(271, 75.9, 52.7)</p>
</div>
<div class="colorboxes" id="color3">
<p class="colornames">chartreuse</p>
<p>rbg(127,255,0)</p>
<p>#7FFF00</p>
<p>hsl(90, 100%, 50%)</p>
</div>
<div class="colorboxes" id="color4">
<p class="colornames">coral</p>
<p>rbg(255,127,80)</p>
<p>#FF7F50</p>
<p>hsl(16, 100%, 65.7%)</p>
</div>
<div class="colorboxes" id="color5">
<p class="colornames">indianred</p>
<p>rbg(205,92,92)</p>
<p>#CD5C5C</p>
<p>hsl(0, 53.1%, 58.2%)</p>
</div>
</section>
<section>
<h3>Fonts</h3>
<div class="fontbox">
<p class="fontname fontname1"><u>Stick No Bills</u></p>
<p class="otherlines fontname1">The quick brown fox jumps over the lazy dog.</p>
<p class="otherlines fontname1"><b>The quick brown fox jumps over the lazy dog.</b></p>
<p class="otherlines fontname1"><i>The quick brown fox jumps over the lazy dog.</i></p>
</div>
<div class="fontbox">
<p class="fontname fontname2"><u>Grey Qo</u></p>
<p class="otherlines fontname2">The quick brown fox jumps over the lazy dog.</p>
<p class="otherlines fontname2"><b>The quick brown fox jumps over the lazy dog.</b></p>
<p class="otherlines fontname2"><i>The quick brown fox jumps over the lazy dog.</i></p>
</div>
<div class="fontbox">
<p class="fontname fontname3"><u>Glechen Fuemen</u></p>
<p class="otherlines fontname3">The quick brown fox jumps over the lazy dog.</p>
<p class="otherlines fontname3"><b>The quick brown fox jumps over the lazy dog.</b></p>
<p class="otherlines fontname3 "><i>The quick brown fox jumps over the lazy dog.</i></p>
</div>
</section>
<section>
<div>
</div>
</section>
</body>
</html>