AMAN KUMAR-12407063
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
background-color: rgb(245, 245, 245);
header{
text-align: center;
background-color: black;
color: white;
padding: 10px;
margin-top: 20px;
header a{
color: white;
text-decoration: none;
div{
background-color: white;
margin-left: 20px;
padding: 10px;
margin-top: 20px;
footer{
AMAN KUMAR-12407063
background-color: black;
color: white;
text-align: center;
padding: 10px;
margin-top: 150px;
</style>
</head>
<body>
<header>
<h1> Welcome to my Webpage</h1>
<a href="">Home</a>
<a href="">About</a>
<a href="">Contact</a>
</header>
<div>
<h2>About This page</h2>
<p>This is a sample webpage to demonstrate styling and linking</p>
<a href="">visitExample.com</a>
</div>
<footer>
©2024 my webpage
</footer>
</body>
</html>
AMAN KUMAR-12407063