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

1a Text Elements Only

This document is a basic HTML webpage that includes a header, paragraphs, and lists to present information about HTML and contact details. It features a quote by Steve Jobs and a footer with copyright information. The page serves as a simple demonstration of fundamental HTML elements.
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)
2 views1 page

1a Text Elements Only

This document is a basic HTML webpage that includes a header, paragraphs, and lists to present information about HTML and contact details. It features a quote by Steve Jobs and a footer with copyright information. The page serves as a simple demonstration of fundamental HTML elements.
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
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic HTML Page</title>
</head>
<body>
<!-- Header -->
<h1>Welcome to My Basic HTML Page</h1>

<!-- Paragraphs -->


<p>This is a simple webpage created using only basic HTML text elements.</p>

<!-- Heading 2 -->


<h2>About This Page</h2>

<!-- Unordered List -->


<ul>
<li>HTML stands for HyperText Markup Language.</li>
<li>It is used to structure content on the web.</li>
<li>This page demonstrates the usage of basic text elements.</li>
</ul>

<!-- Heading 2 -->


<h2>Contact Information</h2>

<!-- Ordered List -->


<ol>
<li>Email: [email protected]</li>
<li>Phone: +123-456-7890</li>
</ol>

<!-- Blockquote -->


<blockquote>
"The only way to do great work is to love what you do." - Steve Jobs
</blockquote>

<!-- Footer -->


<footer>
&copy; 2023 My Basic HTML Page
</footer>
</body>
</html>

You might also like