HTML tutorial-(HTML5 Standard)


Release date:2024-01-30 Update date:2024-02-24 Editor:admin View counts:89

Label:

HTML tutorial-(HTML5 Standard)

Image0

Hypertext markup language (English: HyperText Markup Language, HTML) is a standard markup language for creating web pages.

You can use HTML to build your own WEB site, and HTML runs on the browser and is parsed by the browser.

In this tutorial, you will learn how to use HTML to create a site.

HTML is easy to learn! I believe you can learn it soon!

HTML instance

This tutorial contains hundreds of HTML instances.

Using the editor of this site, you can easily modify HTML online and view the running results of the instance.

Note: for Chinese pages, you need to use <meta charset="utf-8"> declare the code, otherwise there will be garbled. Some browsers (such as 360browser) will set GBK as the default encoding, then you need to set it to <meta charset="gbk"> .

Example

<!DOCTYPEhtml><html><head><metacharset="utf-8"><title>
Rookie Tutorial(runoob.com)</title></head><body><h1>My first title</h1><p>
My first paragraph.</p></body></html>

Suffix name of the HTML document

  • .html

  • .htm

There is no difference between the above two suffix names, and both can be used.

HTML instance

Hundreds of online instances are included in the HTML manual, and you can edit and view the running results online.

HTML reference manual

In the rookie tutorial, we provide a complete HTML reference manual, including tags, attributes, colors, entities, and so on.

HTML/CSS/JS online tool

HTML/CSS/JS online tools can edit HTML, CSS, JS code online and view the results in real time.

Powered by TorCMS (https://github.com/bukun/TorCMS).