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

HTML

The document is an HTML file that defines a basic webpage with an H1 heading, two paragraphs of text, a placeholder image, and a link.

Uploaded by

ccrown861
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)
25 views1 page

HTML

The document is an HTML file that defines a basic webpage with an H1 heading, two paragraphs of text, a placeholder image, and a link.

Uploaded by

ccrown861
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 Webpage</title>
<style>
/* CSS styles can go here */
body {
font-family: Arial, sans-serif;
}
h1 {
color: blue;
}
</style>
</head>
<body>
<h1>Welcome to My First Webpage</h1>
<p>This is a paragraph of text.</p>
<p>You can write anything you want here.</p>
<img src="[Link] alt="Placeholder Image">
<p>This is just a placeholder image.</p>
<a href="[Link] here for [Link]</a>
</body>
</html>

You might also like