-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathexample1.html
More file actions
76 lines (68 loc) · 1.72 KB
/
example1.html
File metadata and controls
76 lines (68 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Example 1 for Scraping </title>
</head>
<body>
<h1>We Are Learning About Web Scraping!</h1>
<p>This page exists only to allow you to try some scraping techniques.</p>
<h2>Some Lovely Images</h2>
<img src="images/thumbnails/park_structures.jpg" alt="thumbnail">
<img src="images/thumbnails/building.jpg" alt="thumbnail">
<img src="images/thumbnails/mosque.jpg" alt="thumbnail">
<img src="images/thumbnails/turrets.jpg" alt="thumbnail">
<img src="images/thumbnails/russia.jpg" alt="thumbnail">
<h2>The top 10 cities to visit in 2018</h2>
<p>Source: <a href="http://www.dw.com/en/the-top-10-cities-to-visit-in-2018/g-41101984">Deutsche Welle</a></p>
<table>
<tr>
<th>City</th>
<th>Country</th>
</tr>
<tr>
<td class="city">Oslo</td>
<td class="country">Norway</td>
</tr>
<tr>
<td class="city">Guanajuato</td>
<td class="country">Mexico</td>
</tr>
<tr>
<td class="city">San Juan</td>
<td class="country">Puerto Rico</td>
</tr>
<tr>
<td class="city">Matera</td>
<td class="country">Italy</td>
</tr>
<tr>
<td class="city">Antwerp</td>
<td class="country">Belgium</td>
</tr>
<tr>
<td class="city">Kaohsiung</td>
<td class="country">Taiwan</td>
</tr>
<tr>
<td class="city">Hamburg</td>
<td class="country">Germany</td>
</tr>
<tr>
<td class="city">Canberra</td>
<td class="country">Australia</td>
</tr>
<tr>
<td class="city">Detroit</td>
<td class="country">United States</td>
</tr>
<tr>
<td class="city">Seville</td>
<td class="country">Spain</td>
</tr>
</table>
<h2>Here Is a Phone Number</h2>
<p>For lots of exciting information, call <span id="call">+1 (352) 555-4321</span> and leave a message.</p>
</body>
</html>