0% found this document useful (0 votes)
9 views2 pages

Index 1

The document is an HTML page with CSS styling. It contains the basic structure and elements of an HTML page including header, navbar, main content, and footer sections. The header and title are styled with different colors.

Uploaded by

hr.mumoenergy
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)
9 views2 pages

Index 1

The document is an HTML page with CSS styling. It contains the basic structure and elements of an HTML page including header, navbar, main content, and footer sections. The header and title are styled with different colors.

Uploaded by

hr.mumoenergy
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/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>money chap</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your external CSS file
-->
</head>
<body>

<header>
<h1 class="title">money chap style in red and caption</h1>
<h2>super mafia profiles</h2>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>

<main>
<!-- Your main content here -->
<h2>Main Content Section</h2>
<p>This is where your main content goes.</p>
</main>

<footer>
<!-- Your footer content here -->
<p>&copy; 2024 Your Website. All rights reserved.</p>
</footer>

</body>
</html>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #333;
color: #fff;
padding: 20px;
}

.title {
color: yellow; /* Change title color to yellow */
}

nav ul {
list-style-type: none;
padding: 0;
}

nav ul li {
display: inline;
margin-right: 20px;
}

nav ul li a {
color: #fff;
text-decoration: none;
}

You might also like