Full HTML Code
Full HTML Code
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="https://developer.mozilla.org/en-US/docs/Web/HTML">MDN Web
Docs</a> for more info.</p>
</body>
</html>