untitled
untitled
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cute Teal Design</title>
<style>
/* Overall Page Style */
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #a0d8d3, #a6f7ff);
color: #4e4e4e;
margin: 0;
padding: 0;
}
h1, h2 {
text-align: center;
color: #3e5c5b;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
/* Tabs Section */
.tabs {
display: flex;
justify-content: center;
background-color: #ffffff;
padding: 10px;
border-radius: 10px;
margin-bottom: 20px;
}
.tab {
padding: 10px 20px;
background-color: #4bd0c7;
margin: 5px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.tab:hover {
background-color: #6ee0d6;
}
.tab-content {
display: none;
background-color: #f0ffff;
padding: 20px;
border-radius: 10px;
width: 80%;
max-width: 500px;
}
.tab-content.active {
display: block;
}
/* Button Style */
.button {
background-color: #ff9a8b;
color: white;
border: none;
padding: 12px 30px;
margin: 10px;
border-radius: 30px;
cursor: pointer;
font-size: 16px;
transition: all 0.3s ease;
}
.button:hover {
background-color: #ff6b5b;
}
/* Form Inputs */
input[type="text"], input[type="email"], input[type="number"], textarea {
width: 100%;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
border: 1px solid #4bd0c7;
font-size: 16px;
}
/* Footer */
footer {
margin-top: 40px;
text-align: center;
font-size: 14px;
color: #4e4e4e;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to the Cute Teal Corner!</h1>
<p>Choose an option below to explore.</p>
<footer>
<p>© 2025 Cute Teal Designs | All Rights Reserved</p>
</footer>
<script>
// Tab switching functionality
const tabs = document.querySelectorAll('.tab');
const contents = document.querySelectorAll('.tab-content');
tabs.forEach(tab => {
tab.addEventListener('click', () => {
// Hide all content
contents.forEach(content => {
content.classList.remove('active');
});
</body>
</html>