Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Website</title>
<style>
body {
font-family: 'Comfortaa', cursive;
background-color: #e0f2f1; /* Light blue background */
margin: 0;
padding: 0;
}
header {
background-color: #26a69a; /* Teal header background */
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #009688; /* Teal nav background */
text-align: center;
padding: 5px 0;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
}
nav a:hover {
background-color: #00796b; /* Darker teal on hover */
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
background-color: #fff; /* White container background */
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 5px;
margin-top: 20px;
}
.main {
float: left;
width: 70%;
}
.sidebar {
float: left;
width: 30%;
background-color: #f0f0f0; /* Light gray sidebar background */
padding: 10px;
margin-top: 20px;
}
.main h2 {
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
margin-bottom: 10px;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #009688; /* Teal footer background */
color: #fff;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
<link href="https://fonts.googleapis.com/css2?
family=Comfortaa:wght@300;400;700&display=swap" rel="stylesheet">
</head>

You might also like