-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
57 lines (57 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<title>Interneting is hard</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="chp-container">
<h1>This page contains the chapters studied during the course.</h1>
<div class="content">
<section>
<h2>chapter-1 Introduction</h2>
<a href="#">Introduction</a>
</section>
<section>
<h2>chapter-2 basics</h2>
<a href="chapter-2/basics.html">Basic Web Pages</a>
</section>
<section>
<h2>chapter-3 Links and Images</h2>
<a href="chapter-3/links.html">Links</a>
<a href="chapter-3/images.html">Images</a>
</section>
<section>
<h2>chapter-4 Hello,CSS</h2>
<a href="chapter-4/hello-css.html">Hello-CSS</a>
<a href="chapter-4/dummy.html">dummy</a>
</section>
<section>
<h2>chapter-5 The BOX Model</h2>
<a href="chapter-5/boxes.html">Boxes</a>
</section>
<section>
<h2>chapter-6 CSS selectors</h2>
<a href="chapter-6/selectors.html">selectors</a>
</section>
<section>
<h2>chapter-7 Floats</h2>
<a href="chapter-7/floats.html">floats</a>
</section>
<section>
<h2>chapter-8 Flexbox</h2>
<a href="chapter-8/flexbox.html">full page layout</a>
</section>
<section>
<h2>chapter-9 Advanced positioning</h2>
<a href="chapter-9/schemes.html">different schemes</a>
<a href="chapter-9/menu.html">navigation bar</a>
</section>
<section>
<h2>chapter-10 Responsive Design</h2>
<a href="chapter-10/responsive.html">try it!</a>
</section>
</div>
</div>
</body>
</html>