Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ What is HTML? | Getting Acquainted with HTML
Web Scraping with Python

bookWhat is HTML?

メニューを表示するにはスワイプしてください

Before proceeding, it is important to understand the concept of HTML and how it works.

Note
Definition

HTML, short for HyperText Markup Language, is a markup language used to render web pages. Think of HTML as the framework that forms the core structure of a web page, making it user-friendly and easy to navigate.

For instance, take a look at the web page displayed below, accessible through the following link.

The HTML structure of the page is as follows:

index.html

index.html

copy

Each HTML tag is enclosed in angle brackets, with a left bracket < and a right bracket >. Most HTML tags come in pairs, consisting of opening and closing tags. A closing tag includes a forward slash /.

In the schema above, the following tags are used:

  • <html> - defines an HTML document (required for every document);
  • <title> - defines a page title displayed in the browser tab;
  • <body> - defines the body of the document;
  • <h2> - defines a second-level heading (six levels are available: <h1><h6>);
  • <p> - defines a paragraph.
question mark

Choose the correct statements:

すべての正しい答えを選択

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  2

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 1.  2
some-alt