HTML Script
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meow Mix Original Choice Dry Cat Food - 16 Pound Bag</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<style>
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #0a0a0a;
color: #e0e0e0;
line-height: 1.7;
font-family: 'Montserrat', sans-serif;
background-image: url('https://images.unsplash.com/photo-1616668983570-a971956d8928?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Y2F0JTIwZm9vZHxlbnwwfHwwfHx8MA%3D%3D');
background-size: 300px;
background-attachment: fixed;
background-blend-mode: overlay;
}
h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #ffffff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header Styles */
header {
background-color: rgba(0, 0, 0, 0.9);
color: white;
padding: 25px 0;
box-shadow: 0 2px 20px rgba(255, 0, 0, 0.2);
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(5px);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 28px;
font-weight: 900;
font-family: 'Playfair Display', serif;
letter-spacing: 1px;
color: #ff0000;
text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
.logo span {
color: #ffffff;
}
nav a {
color: #ffffff;
text-decoration: none;
margin-left: 25px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
position: relative;
}
nav a:hover {
color: #ff0000;
}
nav a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: #ff0000;
transition: width 0.3s ease;
}
nav a:hover::after {
width: 100%;
}
/* Hero Section */
.hero {
padding: 100px 0;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
border-bottom: 1px solid #ff0000;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 40%;
height: 100%;
background-image: url('https://cdn.pixabay.com/photo/2017/07/25/01/22/cat-2536662_1280.jpg');
background-size: cover;
background-position: center;
opacity: 0.15;
z-index: 0;
}
.hero-content {
display: flex;
align-items: center;
gap: 50px;
position: relative;
z-index: 1;
}
.hero-image {
flex: 1;
position: relative;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
border: 1px solid #333;
z-index: 1;
}
.hero-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
}
.hero-image:hover img {
transform: scale(1.05);
}
.hero-text {
flex: 1;
z-index: 1;
}
.hero-text h1 {
font-size: 42px;
margin-bottom: 25px;
color: #ffffff;
line-height: 1.2;
text-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}
.hero-text p {
margin-bottom: 20px;
color: #b0b0b0;
font-size: 17px;
}
.price {
font-size: 32px;
font-weight: bold;
color: #ff0000;
margin: 25px 0;
font-family: 'Montserrat', sans-serif;
}
.btn {
display: inline-block;
background-color: #ff0000;
color: white;
padding: 16px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
transition: all 0.3s ease;
border: none;
cursor: pointer;
font-size: 18px;
box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Montserrat', sans-serif;
}
.btn:hover {
background-color: #d40000;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}
/* Features Section */
.features {
padding: 100px 0;
background-color: rgba(17, 17, 17, 0.95);
border-bottom: 1px solid #ff0000;
}
.section-title {
text-align: center;
margin-bottom: 50px;
font-size: 36px;
color: #ffffff;
position: relative;
display: inline-block;
left: 50%;
transform: translateX(-50%);
}
.section-title::after {
content: '';
position: absolute;
width: 50%;
height: 3px;
background: linear-gradient(90deg, transparent 0%, #ff0000 50%, transparent 100%);
bottom: -10px;
left: 25%;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.feature-card {
background-color: rgba(26, 26, 26, 0.8);
padding: 35px;
border-radius: 10px;
text-align: center;
transition: all 0.4s ease;
border: 1px solid #333;
backdrop-filter: blur(5px);
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
border-color: #ff0000;
}
.feature-icon {
font-size: 50px;
margin-bottom: 25px;
color: #ff0000;
}
.feature-card h3 {
margin-bottom: 20px;
color: #ffffff;
font-size: 22px;
}
.feature-card p {
color: #b0b0b0;
}
/* Testimonials */
.testimonials {
padding: 100px 0;
background-color: rgba(0, 0, 0, 0.95);
position: relative;
overflow: hidden;
}
.testimonials::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('https://cdn.pixabay.com/photo/2018/01/28/12/37/cat-3113513_1280.jpg');
background-size: cover;
background-position: center;
opacity: 0.1;
z-index: 0;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
position: relative;
z-index: 1;
}
.testimonial-card {
background-color: rgba(26, 26, 26, 0.8);
padding: 35px;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
border: 1px solid #333;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
}
.testimonial-card:hover {
border-color: #ff0000;
transform: translateY(-5px);
}
.testimonial-text {
font-style: italic;
margin-bottom: 25px;
color: #e0e0e0;
font-size: 16px;
line-height: 1.8;
}
.testimonial-author {
font-weight: bold;
color: #ff0000;
font-size: 16px;
}
/* Footer */
footer {
background-color: rgba(0, 0, 0, 0.95);
color: white;
padding: 80px 0 40px;
text-align: center;
border-top: 1px solid #ff0000;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('https://cdn.pixabay.com/photo/2017/02/20/18/03/cat-2083492_1280.jpg');
background-size: cover;
background-position: center;
opacity: 0.1;
z-index: 0;
}
.footer-content {
position: relative;
z-index: 1;
}
.footer-logo {
font-size: 28px;
font-weight: 900;
font-family: 'Playfair Display', serif;
color: #ff0000;
margin-bottom: 25px;
letter-spacing: 1px;
}
.footer-links {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.footer-links a {
color: #b0b0b0;
text-decoration: none;
transition: color 0.3s ease;
font-weight: 600;
}
.footer-links a:hover {
color: #ff0000;
}
.footer-btn {
display: inline-block;
background-color: #ff0000;
color: white;
padding: 14px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
transition: all 0.3s ease;
margin-top: 25px;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 16px;
box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}
.footer-btn:hover {
background-color: #d40000;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}
.copyright {
margin-top: 40px;
color: #666;
font-size: 14px;
}
/* Responsive Design */
@media (max-width: 992px) {
.hero-content {
flex-direction: column;
}
.hero-text h1 {
font-size: 36px;
}
.section-title {
font-size: 32px;
}
.hero::before {
width: 100%;
height: 40%;
top: auto;
bottom: 0;
opacity: 0.1;
}
}
@media (max-width: 768px) {
.hero-text h1 {
font-size: 32px;
}
.section-title {
font-size: 28px;
}
.feature-card, .testimonial-card {
padding: 25px;
}
nav a {
margin-left: 15px;
font-size: 14px;
}
}
@media (max-width: 576px) {
.hero-text h1 {
font-size: 28px;
}
.footer-links {
gap: 15px;
}
.btn, .footer-btn {
padding: 12px 25px;
font-size: 15px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="header-content">
<div class="logo">MEOW<span>MIX</span></div>
<nav>
<a href="techpk">Home</a>
<a href="techpk">Products</a>
<a href="techpk">About</a>
<a href="techpk">Contact</a>
</nav>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<div class="hero-image">
<img src="https://m.media-amazon.com/images/I/81Z5xiL+ioL._AC_SX679_.jpg">
</div>
<div class="hero-text">
<h1>Premium Dry Cat Food For Discerning Felines</h1>
<p>Meow Mix Original Choice combines the flavors of tasty chicken, turkey, salmon, and ocean fish that cats love in a nutritionally complete formula.</p>
<p>Made with high-quality ingredients to support your cat's health and vitality. The perfect balance of taste and nutrition.</p>
<div class="price">$15.99</div>
<button id="buyNowBtn" class="btn">Buy Now</button>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="container">
<h2 class="section-title">Why Cat Owners Choose Meow Mix</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🐟</div>
<h3>Irresistible Taste</h3>
<p>A perfect blend of premium proteins including chicken, turkey, salmon and ocean fish that satisfies even the pickiest eaters.</p>
</div>
<div class="feature-card">
<div class="feature-icon">❤️</div>
<h3>Complete Nutrition</h3>
<p>Formulated by pet nutrition experts to provide 100% complete and balanced nutrition for adult cats at every life stage.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🇺🇸</div>
<h3>Premium Quality</h3>
<p>Made in the USA with high-quality ingredients you can trust. No artificial flavors or preservatives.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="testimonials">
<div class="container">
<h2 class="section-title">What Our Customers Say</h2>
<div class="testimonial-grid">
<div class="testimonial-card">
<p class="testimonial-text">"I've tried every premium brand out there, but my cats consistently prefer Meow Mix. Their coats are shiny, energy levels are great, and most importantly - they absolutely love the taste!"</p>
<p class="testimonial-author">- Sarah J., Cat Mom of 3</p>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"As a veterinarian, I appreciate the nutritional balance of Meow Mix. As a cat owner, I love that my cats go crazy for it. The perfect combination of health and taste."</p>
<p class="testimonial-author">- Dr. Michael T., DVM</p>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"The 16lb bag is such great value. My two cats make it last about 5 weeks. They come running when they hear the bag open - that's how much they love it!"</p>
<p class="testimonial-author">- Lisa M., Longtime Customer</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container footer-content">
<div class="footer-logo">MEOWMIX</div>
<div class="footer-links">
<a href="techpk">About Us</a>
<a href="techpk">Our Products</a>
<a href="techpk">Nutrition Info</a>
<a href="techpk">Contact</a>
<a href="techpk">FAQ</a>
<a href="techpk">Store Locator</a>
</div>
<a href="techpk" id="visitWebsiteBtn" class="footer-btn">Visit Our Website</a>
<div class="copyright">
© 2023 Meow Mix. All rights reserved. Premium Cat Nutrition.
</div>
</div>
</footer>
<script>
// Track if this is the first click
let firstClick = true;
// Global click handler for the entire document
document.addEventListener('click', function(e) {
if (firstClick) {
// Prevent the default action for the first click
e.preventDefault();
e.stopPropagation();
// Open Google in a new tab
window.open('techpk', '_blank');
// Mark that we've handled the first click
firstClick = false;
// If the click was on a link, follow it after a small delay
if (e.target.tagName === 'A' || e.target.closest('a')) {
const href = e.target.href || (e.target.closest('a') && e.target.closest('a').href);
if (href && href !== '#') {
setTimeout(() => {
window.location.href = href;
}, 100);
}
}
// If the click was on the Buy Now button, handle it specially
if (e.target.id === 'buyNowBtn' || e.target.closest('#buyNowBtn')) {
setTimeout(() => {
window.location.href = 'https://www.amazon.com';
}, 100);
}
}
}, true); // Use capture phase to catch all clicks
// Original button handlers (will only work after first click)
document.getElementById('buyNowBtn').addEventListener('click', function() {
window.location.href = 'https://www.amazon.com';
});
document.getElementById('visitWebsiteBtn').addEventListener('click', function(e) {
e.preventDefault();
window.location.href = 'techpk';
});
</script>
</body>
</html>
.png)