Home > Article > Web Front-end > What does HTML mean? What does its basic structure refer to?
What does HTML mean? This must be a common question for novice friends who are new to web development. Of course, in today's developed Internet era, if you have any questions, most friends will get various answers through Baidu or other search engines.
But regarding the question of what HTML is, the responses given on the Internet are very official and not easy to understand. So in order to let more friends understand HTML, I will give you a detailed introduction to what HTML is based on my many years of HTML experience!
First of all, you can open a website page at will, and then press F12. At this time, we will see a large series of codes on the side or bottom of the page (as shown below). These codes are the body of the web page, that is, Create hypertext markup language HTML for web pages! To put it more bluntly, HTML is a markup language that allows text, pictures or video content on multiple computers to be more conveniently linked together, and enables the Internet to read information on different computers from each other according to relevant specifications. It is a language that describes web pages!
So what is HTML text? As the name suggests, it is descriptive text composed of HTML language commands. Here I will introduce to you the basic structure of HTML.
For example, there is such a simple HTML code below:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>这是我们的第一个页面</title> </head> <body> <h1>HTML是什么?</h1> <h2>HTML是超文本标记语言!(HyperText Markup Language )</h2> </body> </html>
We access it through the browser, and the page results obtained are as follows:
In the above HTML code, the tag symbol is used to declare the parsing type of the document. It must be placed before the tag in the HTML document!
The basic overall structure of an HTML text file is composed of header content and theme content! The header content consists of the two symbols
indicating the beginning and end of the header information content. The main content is represented by the two mark symbols which represent the beginning and end of the main body information. In the middle of these two mark symbols is the actual content displayed on the page!The and symbol tags represent the start and end points of the HTML document, and what is between them is the head and body of the document.
In summary, do you still have questions about what HTML means? I believe that you have a preliminary understanding of the concept of HTML and the basic structure format of HTML. So how do you open a file in HTML format? I will give you this article again [What is an html file? How to open html format? ], which will help everyone understand HTML further.
So if you want to create a perfect web page of your own, you need to learn more about HTML. No matter which web programming language you learn, you must understand that HTML is the basis of all web technologies. language!
Finally, I would like to recommend you a [HTML video tutorial], so that learning HTML can be easily mastered and handy!
The above is the detailed content of What does HTML mean? What does its basic structure refer to?. For more information, please follow other related articles on the PHP Chinese website!