-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (99 loc) · 2.6 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
104
<!DOCTYPE html>
<html>
<head>
<title>CSS Selectors</title>
<link rel="stylesheet" type="text/css" href="selectors.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</header>
<article>
<section>
<div class="month-list">
<ul>
<li>
<a href="#">January</a>
<span class="disabled">My favorite month</span>
</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>
<span class="disabled">My least favorite month</span>
</li>
<li>
<a href="#" class="disabled">September</a>
</li>
</ul>
</div>
</section>
</article>
<article>
<section>
<div class="grandparent">
<div class="parent">
<h4>Child of parent</h4>
<div>
<div id="red">I'm red!</div>
<h4>I'm red's sister</h4>
<div id="blue">I'm blue!</div>
<h4>I'm blue's brother</h4>
</div>
</div>
<h4>Child of grandparent</h4>
</div>
</section>
</article>
<footer class="padded">
<div class="disclaimer">
Only one purchase per household.
<a href="#">
<span class="footer-link">
<span class="disabled">
Privacy Policy
</span>
</span>
</a>
</div>
<div class="promo">
Purchase a book today and receive the eBook for free!
</div>
<span>
<input type="text" name="email" placeholder="Enter your email address">
<input type="text" name="name" placeholder="Enter your name">
<input type="tel" name="telephone" placeholder="Enter your telephone number">
</span>
</footer>
</body>
</html>