-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
89 lines (84 loc) · 1.66 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS Selectors</title>
<meta name="description" content="CSS Selectors">
<meta name="author" content="me">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header class="bordered padded">
NSS Evening Class: Advanced CSS Selectors
</header>
<section>
<div class="month-list">
<ul>
<li>
<a href="#">January</a>
</li>
<li>
<a href="#">
<span class="active">February</span>
</a>
</li>
<li>
<a href="#">
<span class="disabled">March</span>
</a>
</li>
<li>
<a href="#">April</a>
</li>
<li>
<a href="#">
<div class="promo">
<span class="disabled">May</span>
</div>
</a>
</li>
<li>
<a href="#">June</a>
</li>
<li>
<a href="#">July</a>
</li>
<li>
<a href="#">August</a>
</li>
<li>
<a href="#">September</a>
</li>
<li>
<a href="#">October</a>
</li>
<li>
<a href="#">
<div id="november">
<span >November</span>
</div>
</a>
</li>
<li>
<a href="#">December </a>
</li>
</ul>
</div>
</section>
<footer class="padded">
<div class="promo">
Purchase a book today and receive the eBook for free!
</div>
<div class="disclaimer">
Only one purchase per household.
<a href="#">
<span class="footer-link">
<span class="disabled">
Privacy Policy
</span>
</span>
</a>
</div>
</footer>
</body>
</html>