-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
103 lines (96 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/Zuehlke/zuehlke-reveal-package@12d464d3ae3c5bbe96af93ece05bd5ebeaabefbe/release/index.css"
/>
<title>CSS Course</title>
</head>
<body>
<div class="toc">
<header>
<h1>CSS for Developers – The basics you need to know!</h1>
<h2>
<span class="nowrap">Lucas Schnüriger</span>,
<span class="nowrap">Mithusan Sivakumar</span>
</h2>
</header>
<section>
<a href="chapters/00-intro.html" target="_blank">
<h2 class="counter">Introduction</h2>
<ul>
<li>About us</li>
<li>Schedule</li>
<li>Course Structure</li>
</ul>
</a>
</section>
<section>
<a href="chapters/01-basics.html" target="_blank">
<h2 class="counter">Basics</h2>
<ul>
<li>Syntax</li>
<li>Selectors</li>
<li>Nesting</li>
<li>Units</li>
</ul>
</a>
</section>
<section>
<a href="chapters/02-concepts.html" target="_blank">
<h2 class="counter">Concepts</h2>
<ul>
<li>Browser Styles</li>
<li>Specificity</li>
<li>Box Model</li>
<li>Positioning</li>
</ul>
</a>
</section>
<section>
<a href="chapters/chapter3.html" target="_blank">
<h2 class="counter">Flexbox layout</h2>
<ul>
<li>Motivation</li>
<li>Properties</li>
<li>Building an example</li>
</ul>
</a>
</section>
<section>
<a href="chapters/chapter4.html" target="_blank">
<h2 class="counter">Grid Layout</h2>
<ul>
<li>Overview</li>
<li>Why, What, How</li>
<li>Exercises</li>
</ul>
</a>
</section>
<section>
<a href="chapters/chapter5.html" target="_blank">
<h2 class="counter">Various topics</h2>
<ul>
<li>Design Principles</li>
<li>Media & Container Queries</li>
<li>Animations</li>
<li>Stacking Context</li>
<li>Accessibility</li>
</ul>
</a>
</section>
<section>
<a href="chapters/chapter6.html" target="_blank">
<h2 class="counter">Tooling</h2>
<ul>
<li>Preprocessors</li>
<li>Libraries</li>
<li>Helpers</li>
</ul>
</a>
</section>
</div>
</body>
</html>