HTML (HyperText Markup Language) is the standard markup language used to create web pages. It provides the structure for a webpage, allowing developers to organize content using elements such as headings, paragraphs, links, and images.
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to HTML!</h1>
<p>This is a simple HTML document.</p>
</body>
</html>