<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Cat Breeds</title>
<style>
/* General Styles */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
/* Header Styles */
header {
background: #f0f0f0;
padding: 40px 20px;
text-align: center;
border-bottom: 2px solid #ddd;
}
header h1 {
font-size: 2.8em;
margin: 0;
color: #0056b3;
}
header p {
font-size: 1.2em;
margin-top: 10px;
color: #555;
}
/* Navigation Menu */
nav {
display: flex;
justify-content: center;
background: #0056b3;
padding: 15px 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-size: 1.2em;
padding: 10px 15px;
border-radius: 4px;
transition: background 0.3s, color 0.3s;
}
nav a:hover {
background: #003d80;
color: #fff;
}
/* Main Content */
main {
max-width: 900px;
margin: 20px auto;
padding: 30px;
background: #fff;
border-radius: 8px;
border: 1px solid #ddd;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
main h2 {
font-size: 2.5em;
margin-bottom: 15px;
color: #0056b3;
}
main p {
font-size: 1.2em;
line-height: 1.8;
color: #555;
margin-bottom: 20px;
}
/* Footer Styles */
footer {
background: #f0f0f0;
color: #777;
text-align: center;
padding: 20px;
margin-top: 30px;
border-top: 2px solid #ddd;
}
footer p {
margin: 0;
font-size: 1em;
}
/* Add Responsiveness */
@media (max-width: 768px) {
header h1 {
font-size: 2.2em;
}
nav a {
font-size: 1em;
margin: 0 10px;
}
main h2 {
font-size: 2em;
}
main p {
font-size: 1em;
}
}
</style>
</head>
<body>
<header>
<h1>Welcome to Cat Breeds</h1>
<p>Your ultimate guide to understanding four amazing cat breeds</p>
</header>
<nav>
<a href="persian.html">Persian</a>
<a href="siamese.html">Siamese</a>
<a href="maine_coon.html">Maine Coon</a>
<a href="bengal.html">Bengal</a>
</nav>
<main>
<h2>About This Website</h2>
<p>
Cats are loved for their elegance, independence, and playful nature.
This website is a guide to understanding four extraordinary cat breeds: Persian,
Siamese, Maine Coon, and Bengal.
Each breed has a unique story and personality that sets it apart.
</p>
<p>
Navigate through the links above to learn more about each breed, their history, and why
they might be the perfect companion for you.
</p>
</main>
<footer>
<p>© 2024 Cat Breeds | Designed with Care</p>
</footer>
</body>
</html>