Course Content
Web Scraping with Python
How to deal with a website? Can we get its HTML
structure? The answer is yes, and most browsers allow you to inspect the structure of any webpage you are visiting. You can also change whatever you want on a page, but the changes will be displayed locally (only to you). This set of instruments is called DevTools
.
For instance, to access DevTools
in the Chrome browser, right-click somewhere on the page and press Inspect in the menu that appears. For example, open the Test page. Right-click anywhere on the page, and press the Inspect button. Now you can inspect the webpage structure and modify whatever you want.

Task
Head to the following page.
What is stored inside the second <div>
element (which is a children of the <body>
element)?
Select the correct answer
Section 1.
Chapter 4