0% found this document useful (0 votes)
24 views1 page

Basic HTML Web Page Example

The document is a simple HTML5 web page that includes a heading, a paragraph of text, an image, and a hyperlink. The <head> section contains metadata, while the <body> section displays the visible content. It also invites further enhancements such as styles or JavaScript interactivity.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views1 page

Basic HTML Web Page Example

The document is a simple HTML5 web page that includes a heading, a paragraph of text, an image, and a hyperlink. The <head> section contains metadata, while the <body> section displays the visible content. It also invites further enhancements such as styles or JavaScript interactivity.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

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="[Link] alt="Placeholder Image">

<p>Visit <a href="[Link] target="_blank">[Link]</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!

You might also like