forked from ruippeixotog/scala-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
65 lines (57 loc) · 1.64 KB
/
example.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Test page</title>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>Test page h1</h1>
</div>
<div id="menu">
<span><a href="#home">Home</a></span>
<span><a href="#section1">Section 1</a></span>
<span class="active">Section 2</span>
<span><a href="#section3">Section 3</a></span>
</div>
<div id="content">
<h2>Test page h2</h2>
<span id="date">2014-10-26</span>
<span id="datefull">2014-10-26T12:30:05Z</span>
<span id="rating">4.5</span>
<span id="pages">2</span>
<section>
<h3>Section 1 h3</h3>
<p>Some text for testing</p>
<p>More text for testing</p>
</section>
<section>
<h3>Section 2 h3</h3>
<span>My Form</span>
<form id="myform" action="submit.html">
<input type="text" name="name" value="John">
<input type="text" name="address">
<input type="submit" value="Submit">
<span><a href="#">Add field</a></span>
</form>
</section>
<section>
<h3>Section 3 h3</h3>
<table id="mytable">
<tr>
<td>3</td>
<td>15</td>
<td>15</td>
<td>1</td>
</tr>
</table>
</section>
</div>
<div id="footer">
<span>No copyright 2014</span>
</div>
</div>
</body>
</html>