Skip to content
0

HTML Fundamentals

This is a test page about HTML for the English version.

What is HTML?

HTML (HyperText Markup Language) is the standard markup language for web pages.

Basic Structure

html
<!DOCTYPE html>
<html>
<head>
    <title>Page Title</title>
</head>
<body>
    <h1>Hello World</h1>
</body>
</html>

Elements

Learn about different HTML elements and their uses.

最近更新