copy this exact webpage:
Browse files- apple.html +219 -0
- index.html +4 -2
apple.html
ADDED
|
@@ -0,0 +1,219 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Apple</title>
|
| 7 |
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css">
|
| 8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
| 9 |
+
<style>
|
| 10 |
+
.nav-link {
|
| 11 |
+
position: relative;
|
| 12 |
+
}
|
| 13 |
+
.nav-link::after {
|
| 14 |
+
content: '';
|
| 15 |
+
position: absolute;
|
| 16 |
+
width: 0;
|
| 17 |
+
height: 2px;
|
| 18 |
+
bottom: -2px;
|
| 19 |
+
left: 0;
|
| 20 |
+
background-color: currentColor;
|
| 21 |
+
transition: width 0.3s ease;
|
| 22 |
+
}
|
| 23 |
+
.nav-link:hover::after {
|
| 24 |
+
width: 100%;
|
| 25 |
+
}
|
| 26 |
+
.hero-gradient {
|
| 27 |
+
background: linear-gradient(to bottom, #000000, #2a2a2a);
|
| 28 |
+
}
|
| 29 |
+
.product-card {
|
| 30 |
+
transition: transform 0.3s ease;
|
| 31 |
+
}
|
| 32 |
+
.product-card:hover {
|
| 33 |
+
transform: translateY(-5px);
|
| 34 |
+
}
|
| 35 |
+
</style>
|
| 36 |
+
</head>
|
| 37 |
+
<body class="bg-white text-gray-900 font-sans">
|
| 38 |
+
<!-- Navigation -->
|
| 39 |
+
<nav class="bg-gray-900 text-gray-100 sticky top-0 z-50">
|
| 40 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 41 |
+
<div class="flex justify-between h-12 items-center">
|
| 42 |
+
<div class="flex items-center space-x-1">
|
| 43 |
+
<a href="#" class="text-xl font-semibold">
|
| 44 |
+
<i class="fab fa-apple"></i>
|
| 45 |
+
</a>
|
| 46 |
+
</div>
|
| 47 |
+
<div class="hidden md:flex items-center space-x-7">
|
| 48 |
+
<a href="#" class="nav-link text-sm font-light">Store</a>
|
| 49 |
+
<a href="#" class="nav-link text-sm font-light">Mac</a>
|
| 50 |
+
<a href="#" class="nav-link text-sm font-light">iPad</a>
|
| 51 |
+
<a href="#" class="nav-link text-sm font-light">iPhone</a>
|
| 52 |
+
<a href="#" class="nav-link text-sm font-light">Watch</a>
|
| 53 |
+
<a href="#" class="nav-link text-sm font-light">AirPods</a>
|
| 54 |
+
<a href="#" class="nav-link text-sm font-light">TV & Home</a>
|
| 55 |
+
<a href="#" class="nav-link text-sm font-light">Only on Apple</a>
|
| 56 |
+
<a href="#" class="nav-link text-sm font-light">Accessories</a>
|
| 57 |
+
<a href="#" class="nav-link text-sm font-light">Support</a>
|
| 58 |
+
</div>
|
| 59 |
+
<div class="flex items-center space-x-5">
|
| 60 |
+
<a href="#" class="text-sm"><i class="fas fa-search"></i></a>
|
| 61 |
+
<a href="#" class="text-sm"><i class="fas fa-shopping-bag"></i></a>
|
| 62 |
+
</div>
|
| 63 |
+
</div>
|
| 64 |
+
</div>
|
| 65 |
+
</nav>
|
| 66 |
+
|
| 67 |
+
<!-- Hero Section -->
|
| 68 |
+
<section class="hero-gradient text-white py-20">
|
| 69 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 70 |
+
<h1 class="text-5xl font-bold mb-4">iPhone 14 Pro</h1>
|
| 71 |
+
<h2 class="text-2xl font-light mb-6">Pro. Beyond.</h2>
|
| 72 |
+
<div class="flex justify-center space-x-4">
|
| 73 |
+
<a href="#" class="text-blue-500 hover:underline">Learn more ></a>
|
| 74 |
+
<a href="#" class="text-blue-500 hover:underline">Buy ></a>
|
| 75 |
+
</div>
|
| 76 |
+
<div class="mt-10">
|
| 77 |
+
<img src="http://static.photos/technology/1200x630/1" alt="iPhone 14 Pro" class="mx-auto">
|
| 78 |
+
</div>
|
| 79 |
+
</div>
|
| 80 |
+
</section>
|
| 81 |
+
|
| 82 |
+
<!-- Products Section -->
|
| 83 |
+
<section class="py-16 bg-gray-100">
|
| 84 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 85 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
|
| 86 |
+
<div class="product-card bg-white p-8 rounded-lg text-center">
|
| 87 |
+
<h3 class="text-xl font-semibold mb-2">MacBook Air</h3>
|
| 88 |
+
<p class="text-gray-600 mb-4">M2 chip</p>
|
| 89 |
+
<img src="http://static.photos/technology/320x240/2" alt="MacBook Air" class="mx-auto mb-4">
|
| 90 |
+
<a href="#" class="text-blue-500 hover:underline">Learn more ></a>
|
| 91 |
+
</div>
|
| 92 |
+
<div class="product-card bg-white p-8 rounded-lg text-center">
|
| 93 |
+
<h3 class="text-xl font-semibold mb-2">iPad Pro</h3>
|
| 94 |
+
<p class="text-gray-600 mb-4">Supercharged by M2</p>
|
| 95 |
+
<img src="http://static.photos/technology/320x240/3" alt="iPad Pro" class="mx-auto mb-4">
|
| 96 |
+
<a href="#" class="text-blue-500 hover:underline">Learn more ></a>
|
| 97 |
+
</div>
|
| 98 |
+
<div class="product-card bg-white p-8 rounded-lg text-center">
|
| 99 |
+
<h3 class="text-xl font-semibold mb-2">Apple Watch</h3>
|
| 100 |
+
<p class="text-gray-600 mb-4">Series 8</p>
|
| 101 |
+
<img src="http://static.photos/technology/320x240/4" alt="Apple Watch" class="mx-auto mb-4">
|
| 102 |
+
<a href="#" class="text-blue-500 hover:underline">Learn more ></a>
|
| 103 |
+
</div>
|
| 104 |
+
<div class="product-card bg-white p-8 rounded-lg text-center">
|
| 105 |
+
<h3 class="text-xl font-semibold mb-2">AirPods Pro</h3>
|
| 106 |
+
<p class="text-gray-600 mb-4">2nd generation</p>
|
| 107 |
+
<img src="http://static.photos/technology/320x240/5" alt="AirPods Pro" class="mx-auto mb-4">
|
| 108 |
+
<a href="#" class="text-blue-500 hover:underline">Learn more ></a>
|
| 109 |
+
</div>
|
| 110 |
+
</div>
|
| 111 |
+
</div>
|
| 112 |
+
</section>
|
| 113 |
+
|
| 114 |
+
<!-- Featured Section -->
|
| 115 |
+
<section class="py-20 bg-white">
|
| 116 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 117 |
+
<div class="text-center mb-16">
|
| 118 |
+
<h2 class="text-3xl font-semibold mb-4">The Apple experience.</h2>
|
| 119 |
+
<p class="text-gray-600 max-w-3xl mx-auto">Discover the unique combination of hardware, software, and services that only Apple can deliver.</p>
|
| 120 |
+
</div>
|
| 121 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
|
| 122 |
+
<div class="bg-gray-50 p-12 rounded-xl">
|
| 123 |
+
<h3 class="text-2xl font-semibold mb-4">Apple One</h3>
|
| 124 |
+
<p class="text-gray-600 mb-6">Bundle up to six Apple services. And enjoy more for less.</p>
|
| 125 |
+
<a href="#" class="text-blue-500 hover:underline">Try it free ></a>
|
| 126 |
+
</div>
|
| 127 |
+
<div class="bg-gray-50 p-12 rounded-xl">
|
| 128 |
+
<h3 class="text-2xl font-semibold mb-4">Apple Trade In</h3>
|
| 129 |
+
<p class="text-gray-600 mb-6">Turn the device you have into the one you want.</p>
|
| 130 |
+
<a href="#" class="text-blue-500 hover:underline">See what your device is worth ></a>
|
| 131 |
+
</div>
|
| 132 |
+
</div>
|
| 133 |
+
</div>
|
| 134 |
+
</section>
|
| 135 |
+
|
| 136 |
+
<!-- Quick Links -->
|
| 137 |
+
<section class="py-16 bg-gray-100">
|
| 138 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 139 |
+
<div class="grid grid-cols-2 md:grid-cols-5 gap-8 text-sm">
|
| 140 |
+
<div>
|
| 141 |
+
<h4 class="font-semibold mb-4">Shop and Learn</h4>
|
| 142 |
+
<ul class="space-y-2">
|
| 143 |
+
<li><a href="#" class="text-gray-600 hover:underline">Store</a></li>
|
| 144 |
+
<li><a href="#" class="text-gray-600 hover:underline">Mac</a></li>
|
| 145 |
+
<li><a href="#" class="text-gray-600 hover:underline">iPad</a></li>
|
| 146 |
+
<li><a href="#" class="text-gray-600 hover:underline">iPhone</a></li>
|
| 147 |
+
<li><a href="#" class="text-gray-600 hover:underline">Watch</a></li>
|
| 148 |
+
</ul>
|
| 149 |
+
</div>
|
| 150 |
+
<div>
|
| 151 |
+
<h4 class="font-semibold mb-4">Services</h4>
|
| 152 |
+
<ul class="space-y-2">
|
| 153 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple Music</a></li>
|
| 154 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple TV+</a></li>
|
| 155 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple Fitness+</a></li>
|
| 156 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple News+</a></li>
|
| 157 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple Arcade</a></li>
|
| 158 |
+
</ul>
|
| 159 |
+
</div>
|
| 160 |
+
<div>
|
| 161 |
+
<h4 class="font-semibold mb-4">Apple Store</h4>
|
| 162 |
+
<ul class="space-y-2">
|
| 163 |
+
<li><a href="#" class="text-gray-600 hover:underline">Find a Store</a></li>
|
| 164 |
+
<li><a href="#" class="text-gray-600 hover:underline">Genius Bar</a></li>
|
| 165 |
+
<li><a href="#" class="text-gray-600 hover:underline">Today at Apple</a></li>
|
| 166 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple Camp</a></li>
|
| 167 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple Store App</a></li>
|
| 168 |
+
</ul>
|
| 169 |
+
</div>
|
| 170 |
+
<div>
|
| 171 |
+
<h4 class="font-semibold mb-4">For Business</h4>
|
| 172 |
+
<ul class="space-y-2">
|
| 173 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple and Business</a></li>
|
| 174 |
+
<li><a href="#" class="text-gray-600 hover:underline">Shop for Business</a></li>
|
| 175 |
+
</ul>
|
| 176 |
+
</div>
|
| 177 |
+
<div>
|
| 178 |
+
<h4 class="font-semibold mb-4">About Apple</h4>
|
| 179 |
+
<ul class="space-y-2">
|
| 180 |
+
<li><a href="#" class="text-gray-600 hover:underline">Newsroom</a></li>
|
| 181 |
+
<li><a href="#" class="text-gray-600 hover:underline">Apple Leadership</a></li>
|
| 182 |
+
<li><a href="#" class="text-gray-600 hover:underline">Career Opportunities</a></li>
|
| 183 |
+
<li><a href="#" class="text-gray-600 hover:underline">Investors</a></li>
|
| 184 |
+
<li><a href="#" class="text-gray-600 hover:underline">Ethics & Compliance</a></li>
|
| 185 |
+
</ul>
|
| 186 |
+
</div>
|
| 187 |
+
</div>
|
| 188 |
+
</div>
|
| 189 |
+
</section>
|
| 190 |
+
|
| 191 |
+
<!-- Footer -->
|
| 192 |
+
<footer class="bg-gray-900 text-gray-400 py-8">
|
| 193 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 194 |
+
<div class="border-t border-gray-800 pt-8">
|
| 195 |
+
<p class="text-sm text-center">Copyright © 2023 Apple Inc. All rights reserved.</p>
|
| 196 |
+
<div class="flex flex-wrap justify-center mt-4 space-x-4">
|
| 197 |
+
<a href="#" class="text-xs hover:underline">Privacy Policy</a>
|
| 198 |
+
<a href="#" class="text-xs hover:underline">Terms of Use</a>
|
| 199 |
+
<a href="#" class="text-xs hover:underline">Sales and Refunds</a>
|
| 200 |
+
<a href="#" class="text-xs hover:underline">Legal</a>
|
| 201 |
+
<a href="#" class="text-xs hover:underline">Site Map</a>
|
| 202 |
+
</div>
|
| 203 |
+
</div>
|
| 204 |
+
</div>
|
| 205 |
+
</footer>
|
| 206 |
+
|
| 207 |
+
<script>
|
| 208 |
+
// Simple script to handle navigation hover effects
|
| 209 |
+
document.querySelectorAll('.nav-link').forEach(link => {
|
| 210 |
+
link.addEventListener('mouseenter', () => {
|
| 211 |
+
link.style.color = '#2997ff';
|
| 212 |
+
});
|
| 213 |
+
link.addEventListener('mouseleave', () => {
|
| 214 |
+
link.style.color = '#f5f5f7';
|
| 215 |
+
});
|
| 216 |
+
});
|
| 217 |
+
</script>
|
| 218 |
+
</body>
|
| 219 |
+
</html>
|
index.html
CHANGED
|
@@ -65,6 +65,7 @@
|
|
| 65 |
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">Services</a>
|
| 66 |
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">About</a>
|
| 67 |
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">Contact</a>
|
|
|
|
| 68 |
</div>
|
| 69 |
<div class="flex items-center md:hidden">
|
| 70 |
<button id="mobile-menu-button" class="p-2">
|
|
@@ -77,12 +78,13 @@
|
|
| 77 |
|
| 78 |
<!-- Mobile Menu -->
|
| 79 |
<div id="mobile-menu" class="hidden fixed inset-0 z-40 bg-white dark:bg-gray-900 pt-20 px-4">
|
| 80 |
-
|
| 81 |
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Work</a>
|
| 82 |
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Services</a>
|
| 83 |
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">About</a>
|
| 84 |
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Contact</a>
|
| 85 |
-
|
|
|
|
| 86 |
<button class="absolute top-4 right-4 p-2" id="close-mobile-menu">
|
| 87 |
<i data-feather="x"></i>
|
| 88 |
</button>
|
|
|
|
| 65 |
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">Services</a>
|
| 66 |
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">About</a>
|
| 67 |
<a href="#" class="text-sm font-medium hover:text-primary-500 transition-slow">Contact</a>
|
| 68 |
+
<a href="apple.html" class="text-sm font-medium hover:text-primary-500 transition-slow">Apple Clone</a>
|
| 69 |
</div>
|
| 70 |
<div class="flex items-center md:hidden">
|
| 71 |
<button id="mobile-menu-button" class="p-2">
|
|
|
|
| 78 |
|
| 79 |
<!-- Mobile Menu -->
|
| 80 |
<div id="mobile-menu" class="hidden fixed inset-0 z-40 bg-white dark:bg-gray-900 pt-20 px-4">
|
| 81 |
+
<div class="flex flex-col space-y-6 text-center">
|
| 82 |
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Work</a>
|
| 83 |
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Services</a>
|
| 84 |
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">About</a>
|
| 85 |
<a href="#" class="text-lg font-medium hover:text-primary-500 transition-slow">Contact</a>
|
| 86 |
+
<a href="apple.html" class="text-lg font-medium hover:text-primary-500 transition-slow">Apple Clone</a>
|
| 87 |
+
</div>
|
| 88 |
<button class="absolute top-4 right-4 p-2" id="close-mobile-menu">
|
| 89 |
<i data-feather="x"></i>
|
| 90 |
</button>
|