Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda HTML Structure | Getting Acquainted with HTML
Web Scraping with Python

book
HTML Structure

Let's review the previous chapter where we discussed a basic HTML page along with its corresponding code.

html

index.html

copy
<html>
<title>Test page</title>
<body>
<h2>What is HTML?</h2>
<p>
HTML, or HyperText Markup Language is markup language used for displaying
web pages.
</p>
</body>
</html>

Unlike Python, indentation is not mandatory in HTML, but it is strongly recommended. In the code provided above, you can observe multiple levels of tag nesting. For instance, the <h2> and <p> elements are nested within the <body> element. In this context, the <h2> and <p> tags are regarded as children of the <body> element, with the <body> element serving as the parent. We can represent the structure of this document as follows.

question mark

You are given a simple HTML page. Choose the correct statements.

<html>
<title>Course description</title>
<body>
<h1>Web Scraping with Python</h1>
<h3>Description</h3>
<p>
<b>Web Scraping</b> is a process that can be used to automatically extract
information from websites. This course will help you to get the data from
sources for further <i>manipulation and analysis</i>!
</p>
</body>
</html>

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 3
We use cookies to make your experience better!
some-alt