Introduction
HTML (HyperText Markup Language) is the standard markup language for creating web pages. It provides the structure for web content and is essential for anyone starting in web development.
Basic Structure
<!DOCTYPE html>
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
This is the basic structure of an HTML document.