Enhance website with modern design, dogs, golf, and umbrella themes

This commit is contained in:
Agent Zero
2026-02-18 12:19:27 +00:00
parent 5b7fee040d
commit 74faa2771c
2 changed files with 468 additions and 2 deletions

120
dist/index.html vendored
View File

@@ -1 +1,119 @@
<!DOCTYPE html>\n<html lang="en">\n<head>\n <meta charset="UTF-8">\n <meta name="viewport" content="width=device-width, initial-scale=1.0">\n <title>My Basic Website</title>\n <link rel="stylesheet" href="style.css">\n</head>\n<body>\n <header>\n <h1>Welcome to My Basic Website!</h1>\n </header>\n <main>\n <p>This is a simple website created by Agent Zero.</p>\n <p>Feel free to explore!</p>\n </main>\n <footer>\n <p>&copy; 2026 Agent Zero</p>\n </footer>\n</body>\n</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paws, Putts & Parasols - A Modern Web Experience</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="hero">
<div class="container">
<h1>Paws, Putts & Parasols</h1>
<p>Your ultimate destination for all things dogs, golf, and stylish umbrellas!</p>
<a href="#features" class="btn">Discover More</a>
</div>
</header>
<nav class="navbar">
<div class="container">
<a href="#" class="logo">🐾⛳☂️</a>
<ul>
<li><a href="#dogs">Dogs</a></li>
<li><a href="#golf">Golf</a></li>
<li><a href="#umbrellas">Umbrellas</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<main>
<section id="features" class="features-section">
<div class="container">
<h2>What We Offer</h2>
<div class="feature-grid">
<div class="feature-item">
<img src="https://via.placeholder.com/150/FFD700/FFFFFF?text=Happy+Dog" alt="Happy Dog">
<h3>Delightful Dog Companions</h3>
<p>Explore heartwarming stories and tips for your furry friends.</p>
</div>
<div class="feature-item">
<img src="https://via.placeholder.com/150/228B22/FFFFFF?text=Golf+Course" alt="Golf Course">
<h3>Perfect Your Putt</h3>
<p>Guides and gear for golf enthusiasts of all levels.</p>
</div>
<div class="feature-item">
<img src="https://via.placeholder.com/150/4682B4/FFFFFF?text=Stylish+Umbrella" alt="Stylish Umbrella">
<h3>Chic Umbrella Collections</h3>
<p>Stay dry and stylish with our curated selection of umbrellas.</p>
</div>
</div>
</div>
</section>
<section id="dogs" class="content-section bg-light">
<div class="container">
<h2>Our Canine Corner</h2>
<div class="content-flex">
<img src="https://via.placeholder.com/300/FF6347/FFFFFF?text=Dog+Playing" alt="Dog Playing" class="content-image">
<div>
<p>From playful puppies to loyal companions, dogs bring so much joy to our lives. Discover articles on dog training, health, and heartwarming rescue stories.</p>
<p>We believe every dog deserves a loving home and a happy life. Join our community of dog lovers!</p>
</div>
</div>
</div>
</section>
<section id="golf" class="content-section">
<div class="container">
<h2>The Green Fairway</h2>
<div class="content-flex reverse">
<img src="https://via.placeholder.com/300/3CB371/FFFFFF?text=Golf+Swing" alt="Golf Swing" class="content-image">
<div>
<p>Step onto the green and elevate your game. Our golf section offers tips from pros, reviews of the latest equipment, and insights into the world's most beautiful courses.</p>
<p>Whether you're a seasoned pro or just starting, find everything you need to improve your swing and enjoy the game.</p>
</div>
</div>
</div>
</section>
<section id="umbrellas" class="content-section bg-light">
<div class="container">
<h2>Under the Umbrella</h2>
<div class="content-flex">
<img src="https://via.placeholder.com/300/6A5ACD/FFFFFF?text=Colorful+Umbrella" alt="Colorful Umbrella" class="content-image">
<div>
<p>Don't let a little rain dampen your style! Our umbrella collection features designs for every occasion, from compact travel umbrellas to large, sturdy golf umbrellas.</p>
<p>Discover innovative features, durable materials, and vibrant patterns that make a statement.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="contact-section">
<div class="container">
<h2>Get in Touch</h2>
<p>Have questions or want to share your stories? We'd love to hear from you!</p>
<form class="contact-form">
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container">
<p>&copy; 2026 Paws, Putts & Parasols. All rights reserved.</p>
<div class="social-links">
<a href="#"><img src="https://via.placeholder.com/30/FFFFFF/000000?text=FB" alt="Facebook"></a>
<a href="#"><img src="https://via.placeholder.com/30/FFFFFF/000000?text=TW" alt="Twitter"></a>
<a href="#"><img src="https://via.placeholder.com/30/FFFFFF/000000?text=IG" alt="Instagram"></a>
</div>
</div>
</footer>
</body>
</html>

350
dist/style.css vendored
View File

@@ -1 +1,349 @@
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; }\nheader { background-color: #333; color: #fff; padding: 1em 0; text-align: center; }\nmain { padding: 20px; text-align: center; }\nfooter { background-color: #333; color: #fff; text-align: center; padding: 1em 0; position: fixed; bottom: 0; width: 100%; }
/* General Body & Typography */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8; /* Light background */
color: #333;
line-height: 1.6;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
h1, h2, h3 {
font-weight: 700;
color: #222;
}
p {
font-weight: 300;
}
/* Buttons */
.btn {
display: inline-block;
background-color: #FF6347; /* Tomato Red - vibrant */
color: #fff;
padding: 12px 25px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
font-weight: 600;
}
.btn:hover {
background-color: #E5533D;
}
/* Navbar */
.navbar {
background-color: #333; /* Dark background for contrast */
color: #fff;
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar .logo {
font-size: 1.8em;
font-weight: 700;
color: #fff;
text-decoration: none;
}
.navbar ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.navbar ul li {
margin-left: 25px;
}
.navbar ul li a {
color: #fff;
text-decoration: none;
font-weight: 400;
transition: color 0.3s ease;
}
.navbar ul li a:hover {
color: #FFD700; /* Gold - accent color */
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x700/4682B4/FFFFFF?text=Dogs+Golf+Umbrellas') no-repeat center center/cover;
color: #fff;
text-align: center;
padding: 100px 20px;
height: 60vh;
display: flex;
align-items: center;
justify-content: center;
}
.hero h1 {
font-size: 3.5em;
margin-bottom: 15px;
color: #fff;
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.hero p {
font-size: 1.3em;
margin-bottom: 30px;
color: #eee;
}
/* Features Section */
.features-section {
padding: 60px 0;
text-align: center;
background-color: #fff;
}
.features-section h2 {
font-size: 2.5em;
margin-bottom: 40px;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.feature-item {
background-color: #fefefe;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
transform: translateY(-10px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.feature-item img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
border: 3px solid #FFD700;
}
.feature-item h3 {
font-size: 1.5em;
margin-bottom: 10px;
color: #FF6347;
}
.feature-item p {
font-size: 0.95em;
color: #555;
}
/* Content Sections */
.content-section {
padding: 80px 0;
text-align: center;
}
.content-section.bg-light {
background-color: #f0f4f8; /* Light blue-grey for contrast */
}
.content-section h2 {
font-size: 2.5em;
margin-bottom: 40px;
}
.content-flex {
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}
.content-flex.reverse {
flex-direction: row-reverse;
}
.content-image {
width: 100%;
max-width: 400px;
height: auto;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.content-flex div {
flex: 1;
min-width: 300px;
text-align: left;
}
.content-flex p {
margin-bottom: 15px;
font-size: 1.1em;
color: #444;
}
/* Contact Section */
.contact-section {
padding: 80px 0;
background-color: #333; /* Dark background */
color: #fff;
text-align: center;
}
.contact-section h2 {
color: #fff;
font-size: 2.5em;
margin-bottom: 30px;
}
.contact-section p {
font-size: 1.1em;
margin-bottom: 40px;
color: #eee;
}
.contact-form {
max-width: 600px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 20px;
}
.contact-form input, .contact-form textarea {
padding: 15px;
border: none;
border-radius: 5px;
font-family: 'Poppins', sans-serif;
font-size: 1em;
background-color: rgba(255,255,255,0.1);
color: #fff;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
color: #ccc;
}
.contact-form textarea {
min-height: 120px;
resize: vertical;
}
.contact-form .btn {
background-color: #FFD700; /* Gold */
color: #333;
cursor: pointer;
transition: background-color 0.3s ease;
}
.contact-form .btn:hover {
background-color: #E5C100;
}
/* Footer */
footer {
background-color: #222;
color: #fff;
padding: 30px 0;
text-align: center;
font-size: 0.9em;
}
footer .container {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.social-links a {
margin: 0 10px;
display: inline-block;
}
.social-links img {
width: 30px;
height: 30px;
border-radius: 50%;
transition: transform 0.3s ease;
}
.social-links img:hover {
transform: scale(1.1);
}
/* Responsive Design */
@media (max-width: 768px) {
.navbar .container {
flex-direction: column;
}
.navbar ul {
margin-top: 15px;
flex-wrap: wrap;
justify-content: center;
}
.navbar ul li {
margin: 0 10px 10px 10px;
}
.hero h1 {
font-size: 2.5em;
}
.hero p {
font-size: 1em;
}
.feature-grid {
grid-template-columns: 1fr;
}
.content-flex {
flex-direction: column;
}
.content-flex.reverse {
flex-direction: column;
}
.content-flex div {
text-align: center;
}
.content-image {
margin-bottom: 20px;
}
.contact-form {
padding: 0 15px;
}
}