HTML Tutorial-(HTML5 Standard)
What is HTML used for?
Perhaps this is the biggest question for newbies who are just getting started.
I was confused when I first started learning it, and only after learning slowly did I understand its function.
To put it bluntly, HTML is used to create web pages. The web pages we usually see on the Internet, including the Taobao pages we often go to, news pages, etc., are each made of HTML.
You can also use HTML to build your own WEB site. Many people like League of Legends and can use HTML to create some websites related to League of Legends.
In this tutorial, you will learn how to use HTML to create a site.
HTML is easy to learn! I’m sure you’ll learn it quickly!
HTML Examples
This tutorial contains hundreds of HTML examples.
Using the editor of this site, you can easily modify HTML online and view the running results of the example.
Note: For Chinese web pages, you need to use <meta charset="utf-8"> to declare the encoding, otherwise garbled characters will appear.
UTF-8 is an encoding format. We will all use UTF-8 in future use. You can also learn about it from Baidu.
Example
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <h1>这里是标题</h1> <p>这里是段落。</p> </body> </html>Next Section