-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 809 Bytes
/
Copy pathindex.html
File metadata and controls
39 lines (36 loc) · 809 Bytes
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
<html>
<body>
<!-- ####### THIS IS A COMMENT - Visible only in the source editor #########-->
<div class="firstpart">
<h2>This is an example web page</h2>
<p style="font-size: 1.5em;">I am providing some fake data to let you experiment with the data extraction capabilities of BeautifulSoup 4. <img src="https://html5-editor.net/images/smiley.png" alt="smiley" /></p>
</div>
<div class="secondpart">
<table class="editorDemoTable">
<tbody>
<tr>
<td><strong>Name</strong></td>
<td><strong>City</strong></td>
<td><strong>Age</strong></td>
</tr>
<tr>
<td>John</td>
<td>Chicago</td>
<td>23</td>
</tr>
<tr>
<td>Lucy</td>
<td>Wisconsin</td>
<td>19</td>
</tr>
<tr>
<td>Amanda</td>
<td>Madison</td>
<td>22</td>
</tr>
</tbody>
</table>
<p>This is a table you can experiment with.</p>
</div>
</body>
</html>