forked from justmarkham/DAT8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
34 lines (23 loc) · 810 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'>DAT8 Class 7</h1>
<p class='topic' id='api'>First, we are covering APIs, which are useful for getting data.</p>
<p class='topic' id='scraping'>Then, we are covering web scraping, which is a more flexible way to get data.</p>
<p class='topic' id='feedback'>Finally, I will ask you to fill out yet another feedback form!</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>