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

Website

Uploaded by

yngy7kd9cq
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)
8 views1 page

Website

Uploaded by

yngy7kd9cq
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
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #f4f4f4;
padding: 20px;
text-align: center;
}

h1 {
margin: 0;
}

main {
padding: 20px;
}

p{
line-height: 1.5;
}

footer {
background-color: #f4f4f4;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
</header>

<main>
<p>This is a basic website created with HTML and CSS.</p>
<p>You can customize it further by adding more HTML elements and CSS styles.</p>
</main>

<footer>
<p>&copy; 2023 My Website. All rights reserved.</p>
</footer>
</body>
</html>

You might also like