-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (89 loc) · 3.09 KB
/
index.html
File metadata and controls
89 lines (89 loc) · 3.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style/style.css" />
<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=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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=Cutive+Mono&display=swap"
rel="stylesheet"
/>
<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>Kari's Stylesheet</title>
</head>
<body>
<h1>My <span class="text-gradient">Cool</span> Stylesheet</h1>
<h2>Colors</h2>
<div class="color-container">
<div class="color-panel">
<span class="blue" data-hover="#4158d0">light purple</span>
<span class="pink" data-hover="#c850c0">pink</span>
<span class="yellow" data-hover="#ffcc70">yellow</span>
</div>
</div>
<h2>Fonts</h2>
<div class="font-container">
<div class="font-panel">
<p class="font-label sf-pro">SF Pro</p>
<p class="regular sf-pro">
The quick brown fox jumps over the lazy dog.
</p>
<p class="italic sf-pro">
The quick brown fox jumps over the lazy dog.
</p>
<p class="bold sf-pro">The quick brown fox jumps over the lazy dog.</p>
</div>
<div class="font-panel">
<p class="font-label sf-pro">Playfair</p>
<p class="regular playfair">
The quick brown fox jumps over the lazy dog.
</p>
<p class="italic playfair">
The quick brown fox jumps over the lazy dog.
</p>
<p class="bold playfair">
The quick brown fox jumps over the lazy dog.
</p>
</div>
<div class="font-panel">
<p class="font-label sf-pro">Cutive Mono</p>
<p class="regular cutive">
The quick brown fox jumps over the lazy dog.
</p>
<p class="italic cutive">
The quick brown fox jumps over the lazy dog.
</p>
<p class="bold cutive">The quick brown fox jumps over the lazy dog.</p>
</div>
</div>
<h2>Text Styles</h2>
<h1 class="text-style-h1">H1: Main page heading</h1>
<ul>
<li>Font weight: Bold</li>
<li>Font size: 40px</li>
<li>Font family: SF Pro</li>
</ul>
<h2 class="text-style-h2">H2: Subheading</h2>
<ul>
<li>Font weight: Bold</li>
<li>Font size: 35px</li>
<li>Font family: SF Pro</li>
</ul>
<p class="text-stye-p">P: Paragraph text</p>
<ul>
<li>Font weight: Regular</li>
<li>Font size: 16px</li>
<li>Font family: SF Pro</li>
</ul>
</body>
</html>