HTML Tutorial Introduction
HyperText Markup Language (HTML for short) is a standard markup language used to create web pages.
You can use HTML to build your own WEB site. 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 Example
This tutorial contains hundreds of HTML examples.
Using the editor of this site(under construction), you can easily modify the HTML online and view the results of the instance operation.
Note: For I18N web pages, you need to use the <meta charset="utf-8"> declaration encoding, otherwise garbled characters will appear.
Example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The beginner tutorial (tutorialfish.com)</title>
</head>
<body>
<h1>My first Title</h1>
<p>My first paragraph</p>
</body>
</html>
The Suffixes of The HTML Document
.html
.htm
There is no difference between the above two suffixes, and both can be used.
HTML Examples
Hundreds of online examples are included in the HTML manual, and you can edit and view the running results online.
HTML Reference
In the tutorial, we provide a complete HTML reference manual, including tags, attributes, colors, entities, and so on.
HTML/CSS/JS Online Tools
HTML/CSS/JS online tools can edit HTML, CSS, JS code online, and view the effect in real time, you can also save and share high-quality code.