Example HTML Page (Complete)

Combining all elements into a single functional document.

Source Code
<!DOCTYPE html>
<html>
<head>
  <title>My First Page</title>
</head>
<body>
  <h1>Welcome to My Website</h1>
  <p>This is my first HTML page.</p>
  <a href="https://google.com">Go to Google</a>
  <br><br>
  <img src="image.jpg" alt="Sample Image" width="200">
</body>
</html>
Browser Preview

Welcome to My Website

This is my first HTML page.

Go to Google

[Sample Image (200px)]