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

q1 Final

Uploaded by

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

q1 Final

Uploaded by

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

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Tutorial Home</title>
<style>
body {
background-image: url('background.jpg');
background-size: cover;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
color: brown;
}
a {
font-size: 20px;
color: #ffcc00;
text-decoration: underline;
}
marquee {
font-size: 30px;
color: red;
}
.menu {
margin: 50px auto;
width: 50%;
text-align: center;
}
</style>
</head>
<body>
<h1>HTML Tutorial</h1>
<marquee>HTML TUTORIAL</marquee>
<div class="menu">
<p><a href="first.html">Formatting Styles and Headings</a></p>
<p><a href="second.html">Font Styles and Image Tag</a></p>
<p><a href="third.html">Marquee</a></p>
<p><a href="forth.html">Other Tags: br, hr, pre, p</a></p>
</div>
</body>
</html>

You might also like