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

Basic HTML Web Page Example

This document is a simple HTML web page titled 'My First Web Page'. It includes basic styling with CSS and provides an introduction to HTML, listing its key features. Additionally, it contains a link to the MDN Web Docs for further information on HTML.

Uploaded by

protyushbala69
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
66 views1 page

Basic HTML Web Page Example

This document is a simple HTML web page titled 'My First Web Page'. It includes basic styling with CSS and provides an introduction to HTML, listing its key features. Additionally, it contains a link to the MDN Web Docs for further information on HTML.

Uploaded by

protyushbala69
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as 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>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 20px;
padding: 20px;
}
h1 {
color: #333;
}
p {
font-size: 16px;
color: #555;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Welcome to My First Web Page</h1>
<p>This page is created using basic HTML and a bit of CSS for styling.</p>
<ul>
<li>HTML stands for HyperText Markup Language</li>
<li>Used to create structure of web pages</li>
<li>Easy to learn and powerful</li>
</ul>
<p>Check out <a href="[Link] Web
Docs</a> for more info.</p>
</body>
</html>

You might also like