-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmall-sample-list.html
72 lines (67 loc) · 2.71 KB
/
small-sample-list.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Small Sample List</title>
<meta name="description" content="Some data to scrape.">
<meta name="viewport" content="width=device-width">
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<![endif]-->
<header>
<h1 id="title">Small Sample List</h1>
</header>
<nav>
<ul>
<li><a href='#'>Section 1</a></li>
<li><a href='#'>Section 2</a></li>
<li><a href='#'>Section 3</a></li>
</ul>
</nav>
<article>
<header>
<h2 id='addams'>Addam's Family</h2>
</header>
<p>Here's some information about the Addam's Family.</p>
<ul>
<li><em>Gomez Addams</em> — father</li>
<li><em>Morticia Addams</em> — mother</li>
<li><em>Pugsley Addams</em> — brother</li>
<li><em>Wednesday Addams</em> — sister</li>
<li><em>Pubert Addams</em> — brother</li>
<li><em>Fester Addams</em> — uncle</li>
<li><em>Grandmama</em> — grandmother</li>
<li><em>Thing</em> — hand</li>
<li><em>Lurch</em> — butler</li>
<li><em>Cousin Itt</em> — cousin</li>
<li><em>Cousin Cackle</em> — cousin</li>
</ul>
</article>
<article>
<header>
<h2 id='munsters'>The Munsters</h2>
</header>
<p>A different take.</p>
<ul>
<li><em>Herman Munster</em> — father</li>
<li><em>Lily Munster</em> — mother</li>
<li><em>Grandpa Dracula</em> — grandfather</li>
<li><em>Eddie Munster</em> — brother</li>
<li><em>Marilyn Munster</em> — sister</li>
<li><em>The Raven</em> — pet</li>
</ul>
</article>
<footer>
<ul>
<li><a href='#'>Page 1</a></li>
<li><a href='#'>Page 2</a></li>
</ul>
</footer>
</body>
</html>