What is HTML?
HTML is a language used to describe web pages.
HTML refers to Hyper Text Markup Language (Hyper Text Markup Language) HTML is not a programming language, but a markup language (markup language) Tag Language is a set of markup tags HTML uses markup tags to describe web pages
HTML tags
HTML Markup tags are often called HTML tags.
HTML tags are keywords surrounded by angle brackets, such as HTML tags usually appear in pairs, such as and The first tag in the tag pair is the opening tag and the second tag is the closing tag The opening and closing tags are also known as opening tag and closing tag
HTML document = web page
HTML document describes web page HTML document contains HTML tags and plain text HTML document is also called web page The role of a web browser is to read HTML documents and display them in the form of web pages. Instead of displaying HTML tags, browsers use tags to interpret the content of the page
<html><body><h1>My First Heading</h1><p>My first paragraph.</p></body></html>
Copy after login
Result:
Example explanation
The text between describes the web page The text between is the visible page content and < Text between /h1> is displayed as a heading
and
is displayed as a paragraph
Copyright statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.