Start building websites from scratch using HTML5
HTML (HyperText Markup Language) is the standard language for creating web pages and web applications. It provides the basic structure of a site, which is enhanced and modified by other technologies like CSS and JavaScript. HTML uses a system of tags and attributes to define the content and layout of a web page, making it readable by browsers and accessible to users worldwide.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My First HTML Page</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is my first web page.</p>
</body>
</html>
This is my first web page.