Baskar2005's picture
Upload 143 files
44b5a6f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Apple Varieties | Organic vs Hybrid</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="../global-css-cards.css">
<script src="../script.js"></script>
</head>
<body>
<!-- Header & Navigation -->
<header>
<nav>
<div class="logo">
<a href="index.html">NatureCompare</a>
</div>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-links">
<li><a href="../index.html">Home</a></li>
<li><a href="../fruits.html" class="active">Fruits</a></li>
<li><a href="../vegetables.html">Vegetables</a></li>
<li><a href="../about.html">About</a></li>
<li><a href="../contact.html">Contact</a></li>
<li><button id="theme-toggle">🌓</button></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main>
<!-- Page Header -->
<section class="page-header">
<h1>Apple Varieties: Organic vs Hybrid</h1>
<p>Explore different apple varieties and their benefits.</p>
</section>
<!-- Organic Apples Section -->
<section class="fruits-section">
<h2>🍃 Organic Apples</h2>
<div class="card-container">
<a href="../fruits_variety_set/apple_varieties/ooty-apple.html" class="card">
<div class="card-image" style="background-image: url('https://5.imimg.com/data5/CE/SD/PH/ANDROID-34421612/product-jpeg.jpg');"></div>
<div class="card-content">
<h3>Ooty Apple</h3>
<p>Grown in high-altitude regions, rich in nutrients.</p>
</div>
</a>
<a href="../fruits_variety_set/apple_varieties/kinnaur-apple.html" class="card">
<div class="card-image" style="background-image: url('https://www.shutterstock.com/shutterstock/videos/1032125147/thumb/1.jpg?ip=x480');"></div>
<div class="card-content">
<h3>Kinnaur Apple</h3>
<p>Natural and crisp, sourced from the Kinnaur valley.</p>
</div>
</a>
<a href="../fruits_variety_set/apple_varieties/himachal-apple.html" class="card">
<div class="card-image" style="background-image: url('https://th.bing.com/th/id/R.acf27fb962a6ec917726399eecc47e48?rik=KMhoVwrEcU%2f0Ww&riu=http%3a%2f%2fwww.infinitejourneys.in%2fblog%2fwp-content%2fuploads%2f2020%2f09%2fApples-in-Kinnaur-2-2-1024x576.jpg&ehk=w9mt0oPIQ0KjPJE7w0gIHO%2fLkjyJGULxjiK7mIJsdHo%3d&risl=&pid=ImgRaw&r=0');"></div>
<div class="card-content">
<h3>Himachal Apple</h3>
<p>Pure organic apples from Himachal orchards.</p>
</div>
</a>
</div>
</section>
<!-- Hybrid Apples Section -->
<section class="fruits-section">
<h2>🔬 Hybrid Apples</h2>
<div class="card-container">
<a href="../fruits_variety_set/apple_varieties/honeycrisp-apple.html" class="card">
<div class="card-image" style="background-image: url('https://cdn.shopify.com/s/files/1/2081/3263/products/honeycrisp_apple_tree_branch_fruit.jpg?v=1569129576');"></div>
<div class="card-content">
<h3>Honeycrisp</h3>
<p>Exceptionally crisp and sweet, loved worldwide.</p>
</div>
</a>
<a href="../fruits_variety_set/apple_varieties/fuji-apple.html" class="card">
<div class="card-image" style="background-image: url('https://cdn.shopify.com/s/files/1/0062/8532/8445/products/Fuji_Apple_3_940x.jpg?v=1596828580');"></div>
<div class="card-content">
<h3>Fuji Apple</h3>
<p>Fuji apples are hybrid apples, known for their crisp texture and sweet flavor.</p>
</div>
</a>
<a href="../fruits_variety_set/apple_varieties/jazz-apple.html" class="card">
<div class="card-image" style="background-image: url('https://cdn.freshfruitportal.com/2017/05/Jazz-Apples-on-trees.jpg');"></div>
<div class="card-content">
<h3>Jazz Apple</h3>
<p>A perfect balance of tangy and sweet flavors.</p>
</div>
</a>
<a href="../fruits_variety_set/apple_varieties/envy-apple.html" class="card">
<div class="card-image" style="background-image: url('https://th.bing.com/th/id/R.30db495d3244c29b7061523c3221786f?rik=BDl7ZbXCowVZjA&riu=http%3a%2f%2fmomobud.sg%2fwp-content%2fuploads%2f2014%2f12%2fEnvy-apple-trees-in-New-Zealand.jpeg&ehk=QJQDNaKhilSpo7%2byqgdkLLeGyNGVyAJPs4E7YyXz5i4%3d&risl=&pid=ImgRaw&r=0');"></div>
<div class="card-content">
<h3>Envy Apple</h3>
<p>Slow to brown, with a rich, honeyed sweetness.</p>
</div>
</a>
</div>
</section>
</main>
<style>
/* Footer Styles */
.footer {
background-color: white;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 1rem;
padding: 1.5rem;
transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-content {
width: 100%;
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
font-size: 0.875rem;
color: #4a5568;
margin: 0;
padding: 0;
list-style-type: none;
}
.footer-links li {
margin-right: 1rem;
}
.footer-links a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}
.footer-divider {
margin-top: 1.5rem;
margin-bottom: 1.5rem;
border-color: #e2e8f0;
}
.footer-credit {
text-align: center;
font-size: 0.875rem;
color: #6b7280;
}
.footer-credit a {
text-decoration: none;
color: #4a5568;
}
/* Dark Mode Footer Styles */
body.dark .footer {
background-color: #333;
color: #f1f1f1;
}
body.dark .footer-links a {
color: #f1f1f1;
}
body.dark .footer-divider {
border-color: #555;
}
body.dark .footer-credit a {
color: #f1f1f1;
}
</style>
<style>
/* Footer Styles */
.footer {
background-color: white;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 1rem;
padding: 1.5rem;
transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-content {
width: 100%;
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
font-size: 0.875rem;
color: #4a5568;
margin: 0;
padding: 0;
list-style-type: none;
}
.footer-links li {
margin-right: 1rem;
}
.footer-links a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}
.footer-divider {
margin-top: 1.5rem;
margin-bottom: 1.5rem;
border-color: #e2e8f0;
}
.footer-credit {
text-align: center;
font-size: 0.875rem;
color: #6b7280;
}
.footer-credit a {
text-decoration: none;
color: #4a5568;
}
/* Dark Mode Footer Styles */
body.dark .footer {
background-color: #333;
color: #f1f1f1;
}
body.dark .footer-links a {
color: #f1f1f1;
}
body.dark .footer-divider {
border-color: #555;
}
body.dark .footer-credit a {
color: #f1f1f1;
}
</style>
<footer class="footer">
<div class="footer-content">
<ul class="footer-links">
<li><a href="../index.html">Home</a></li>
<li><a href="../fruits.html">Fruits</a></li>
<li><a href="../vegetables.html">Vegetables</a></li>
<li><a href="../about.html">About</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
</div>
<hr class="footer-divider" />
<div class="footer-credit">
<span>© 2025 <a href="#">NatureCompare</a>. All Rights Reserved.</span>
</div>
</footer>
<style>
/* Footer Styles */
.footer {
background-color: white;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 1rem;
padding: 1.5rem;
transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-content {
width: 100%;
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
font-size: 0.875rem;
color: #4a5568;
margin: 0;
padding: 0;
list-style-type: none;
}
.footer-links li {
margin-right: 1rem;
}
.footer-links a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}
.footer-divider {
margin-top: 1.5rem;
margin-bottom: 1.5rem;
border-color: #e2e8f0;
}
.footer-credit {
text-align: center;
font-size: 0.875rem;
color: #6b7280;
}
.footer-credit a {
text-decoration: none;
color: #4a5568;
}
/* Dark Mode Footer Styles */
body.dark .footer {
background-color: #333;
color: #f1f1f1;
}
body.dark .footer-links a {
color: #f1f1f1;
}
body.dark .footer-divider {
border-color: #555;
}
body.dark .footer-credit a {
color: #f1f1f1;
}
</style>
</body>
</html>