forked from JamesByers/GA-SEA-DAT2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
34 lines (23 loc) · 833 Bytes
/
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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Example Web Page</title>
</head>
<body>
<h1 id='main'>DAT1 Class 7</h1>
<p class='topic' id='api'>First, we utilized APIs, which are useful for getting data.</p>
<p class='topic' id='scraping'>Now we are covering web scraping. It is a more flexible way to get data but is also rather page specific.</p>
<p class='topic' id='feedback'>These are the two main ways of retrieving data from the web.</p>
<h2>Resource List</h2>
<p>Here are some helpful API resources:</p>
<ul id='api'>
<li>API resource 1</li>
<li>API resource 2</li>
</ul>
<p>Here are some helpful web scraping resources:</p>
<ul id='scraping'>
<li>Web scraping resource 1</li>
<li>Web scraping resource 2</li>
</ul>
</body>
</html>