Table of Contents
What Is HTML: Introduction to HTML is easier to understand when the core ideas are paired with practical examples. The sections below explain the topic clearly, highlight useful steps, and point out details that can prevent common errors.
What is HTML?
- HTML is the standard markup language for creating websites.
- HTML stands for Hyper Text Markup Language.
- HTML describes the structure of the website with markups.
- Elements in HTML are blocks of HTML web pages.
- Elements in HTML are represented by tags (tags).
- HTML markup tags contain content like 'paragraph', 'heading', 'table'.
- The browser does not display HTML tags but uses them to display the content of the page.
A simple HTML text
Below is an example of a simple HTML text.
TipsMake.com
Learn HTML programming
HTML is a hypertext markup language.
Explain the example
- said this text is HTML5
- is the root element of the HTML page
- contains descriptive information about the text
- is the element that indicates the title of the text
- is the element containing the page content to display
-
is the element that will display the big title - is the element of the paragraph
HTML markup tag
HTML markup tags (referred to as HTML tags) are elements enclosed in curly braces.
noi_dung
- HTML tags often go into pairs, For instance,
and
- The first tag in this pair is called an opening tag, the second card is called a closing tag.
- The closing tag is written like an opening tag but begins with a slash before the tag name.
Web browser
The purpose of web browsers (Chrome, IE, Firefox, Safari.) is to read HTML documents and display them. The browser does not display HTML tags but uses them to determine how to display the text.
Browser displays HTML text
HTML page structure
Below is a simplified image of the HTML page structure.
Parts in a simple HTML page structure
Note: Only the content within the new section is displayed in the browser.
indicates the type of text and helps the browser display the web properly, appearing only once at the top of the page (before any HTML tags).
FAQ
What is HTML? HTML is the standard markup language for creating websites. HTML stands for Hyper Text Markup Language. HTML describes the structure of the website with markups. Elements in HTML are blocks of HTML web pages. Elements in HTML are represented by tags (tags). HTML markup tags contain content like 'paragraph', 'heading', 'table'. The browser does not display HTML tags but uses them to display the content of the page. A simple HTML text?
Below is an example of a simple HTML text.
What should you know about learn HTML programming?
HTML is a hypertext markup language.
is the element that will display the big title is the element of the paragraph HTML markup tag?
HTML markup tags (referred to as HTML tags) are elements enclosed in curly braces.
Reader Comments 0
Sign in with email or Google to join the discussion.