English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Basic Tutorial

HTML Media

HTML Reference Manual

HTML5 Basic Tutorial

HTML5 API

HTML5 Media

HTML Basic Tutorial

HyperText Markup Language (full name in English: HyperText Markup Language, abbreviation: HTML) is a standard tag language used to create web pages. Here, you will master some important concepts and syntax, learn how to use HTML for text, how to create hyperlinks, and how to use HTML to make a web page. HTML is easy to learn, just follow(oldtoolbag.com) Learn the basic tutorial of HTML! I believe you can learn it quickly!

HTML入门示例

This tutorial includes various commonly used HTML examples.

Use this site's online editing and running tool, and you can easily modify and preview HTML online, and view the output results of the example running.

Note: For Chinese web pages, you need to use <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> declaration encoding, otherwise, garbled characters will appear. Some browsers (such as 360 browsers) will set GBK as the default encoding, then you need to set it as <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> or <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />is enough.

!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>HTML Basic Tutorial(oldtoolbag.com)</title>
</head>
<body>
    <h1>My first web page title</h1>
    <p>This is a paragraph on the web page, where you can write web descriptions and content.</p>
    <p><font color="red">My first web page in red text.</font></p>
</body>
</html>
Test and See ‹/›

What are the suffixes of HTML documents

  • .html

  • .htm

  • .shtml

    All three suffixes can be used as static web page suffixes, usually using.html.

Start Learning HTML

HTML Examples

The HTML manual includes hundreds of online examples that you can edit and view the running results online.

View HTML Examples

HTML Reference Manual

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

HTML Tag Reference Manual

HTML/CSS/JS online tools

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