0% found this document useful (0 votes)
16 views3 pages

Aman Kumar-12407063 Activity 4

HTML CSS

Uploaded by

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

Aman Kumar-12407063 Activity 4

HTML CSS

Uploaded by

amanrajputjee122
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

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>&nbsp;&nbsp;

<a href="">About</a>&nbsp;&nbsp;

<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>

&copy2024 my webpage

</footer>

</body>

</html>
AMAN KUMAR-12407063

You might also like