<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to My Web Page</h1>
<p>This is a paragraph of text on my very first HTML page.</p>
<img src="https://via.placeholder.com/300" alt="Placeholder Image">
<p>Visit <a href="https://www.example.com" target="_blank">Example.com</a> for
more information.</p>
</body>
</html>
What it does:
<!DOCTYPE html> tells the browser this is an HTML5 document.
The <head> section contains metadata like the page title.
The <body> contains visible content:
A heading (<h1>)
A paragraph (<p>)
An image (<img>)
A link (<a>)
Let me know if you want to add styles, interactivity with JavaScript, or create
something more advanced!