-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
49 lines (41 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=yes">
<meta name="description" content="Downloadable code examples for CSS Master, 3rd edition.">
<title>CSS Master, 3rd edition Code Samples CSS Master (third edition)</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Inconsolata&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Zilla+Slab:ital,wght@0,700;1,700&family=IBM+Plex+Mono&display=swap">
<link rel="stylesheet" href="/theme/css/global.css">
</head>
<body class="home">
<header id="top">
<div>
<h1><i>CSS Master</i> Code Examples</h1>
</div>
</header>
<!-- end header -->
<main>
<h2>Demos by Chapter</h2>
<nav>
<ul id="home-nav">
<li><a href="./selectors/">Selectors</a></li>
<li><a href="./customproperties/">Custom Properties</a></li>
<li><a href="./animationtransitions/">Transitions & Animations</a></li>
<li><a href="./layouts/">CSS Layout</a></li>
<li><a href="./text/">Working With Text</a></li>
<li><a href="./transforms/">Transforms</a></li>
<li><a href="./scroll/">Managing Scrolling with CSS</a></li>
<li><a href="./visualeffects/">Visual Effects</a></li>
<li><a href="./svg/">Using CSS with SVG</a></li>
<li><a href="./conditionalcss/">Using CSS Conditionally</a></li>
</ul>
</nav>
</main>
<!-- Global site footer -->
<footer class="global">
<p>Examples from <i>CSS Master</i> (3rd edition) written by Tiffany B. Brown and published by SitePoint, Ltd. © 2015 – 2021.</p>
</footer>
</body>
</html>