-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (93 loc) · 2.71 KB
/
index.html
File metadata and controls
99 lines (93 loc) · 2.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="selectors.css" rel="stylesheet" type="text/css">
</head>
<header>
<ul id="menu">
<li><a href="#home">Home</a></li>
<li><a href="#profile">Profile</a></li>
<li><a href="#blog">Blog</a></li>
</ul>
</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>I'm red!</div>
<h4>I'm red's sister</h4>
<div>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="#"></a>
<span class="footer-link">
<span class="disabled">
Privacy Policy
</span>
</span>
</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>
</html>