Spaces:
Running
Running
File size: 9,743 Bytes
9c6e804 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amazon.com: Online Shopping for Electronics, Apparel, Computers, Books, DVDs & more</title>
<link rel="icon" type="image/x-icon" href="https://www.amazon.com/favicon.ico">
<style>
:root {
--amazon-orange: #FF9900;
--amazon-dark: #131921;
--amazon-light: #EAEDED;
--amazon-blue: #232F3E;
--amazon-gray: #CCCCCC;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: var(--amazon-light);
}
.navbar {
background-color: var(--amazon-dark);
color: white;
height: 60px;
padding: 0 20px;
display: flex;
align-items: center;
position: relative;
}
.nav-logo {
height: 50px;
width: 100px;
margin-right: 20px;
background-image: url('http://static.photos/retail/320x240/1');
background-size: contain;
background-repeat: no-repeat;
}
.nav-search {
display: flex;
flex-grow: 1;
max-width: 800px;
height: 40px;
}
.search-select {
background-color: #F3F3F3;
width: 50px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
border: none;
text-align: center;
}
.search-input {
flex-grow: 1;
font-size: 16px;
padding: 10px;
border: none;
}
.search-icon {
background-color: var(--amazon-orange);
width: 45px;
display: flex;
justify-content: center;
align-items: center;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
color: var(--amazon-dark);
}
.nav-right {
display: flex;
color: white;
margin-left: 20px;
}
.nav-item {
padding: 10px;
display: flex;
flex-direction: column;
}
.nav-item span:first-child {
font-size: 12px;
}
.nav-item span:last-child {
font-size: 14px;
font-weight: bold;
}
.nav-cart {
display: flex;
align-items: center;
margin-left: 20px;
position: relative;
}
.cart-count {
position: absolute;
top: 5px;
left: 20px;
color: var(--amazon-orange);
font-weight: bold;
}
.subnav {
background-color: var(--amazon-blue);
color: white;
height: 40px;
display: flex;
align-items: center;
padding: 0 20px;
}
.subnav-menu {
display: flex;
align-items: center;
margin-right: 20px;
font-weight: bold;
}
.subnav-links {
display: flex;
list-style: none;
}
.subnav-links li {
padding: 0 10px;
font-size: 14px;
}
.hero-image {
height: 300px;
width: 100%;
background-image: url('http://static.photos/retail/1200x630/2');
background-size: cover;
background-position: center;
}
.shop-section {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
padding: 20px;
background-color: white;
margin-top: -100px;
position: relative;
z-index: 1;
max-width: 1400px;
margin-left: auto;
margin-right: auto;
}
.shop-box {
height: 350px;
background-color: white;
padding: 20px;
display: flex;
flex-direction: column;
}
.shop-box h2 {
margin-bottom: 10px;
}
.shop-box img {
width: 100%;
height: 250px;
object-fit: cover;
margin-bottom: 10px;
}
.shop-box a {
color: #0066C0;
font-size: 13px;
text-decoration: none;
}
footer {
background-color: var(--amazon-dark);
color: white;
margin-top: 30px;
}
.back-to-top {
background-color: var(--amazon-blue);
padding: 15px 0;
text-align: center;
font-size: 14px;
}
.footer-links {
display: flex;
justify-content: space-around;
padding: 40px 0;
max-width: 1000px;
margin: 0 auto;
}
.footer-column h3 {
font-size: 16px;
margin-bottom: 10px;
}
.footer-column ul {
list-style: none;
}
.footer-column li {
margin-bottom: 10px;
font-size: 14px;
color: #DDDDDD;
}
.footer-logo {
display: flex;
justify-content: center;
padding: 30px 0;
border-top: 1px solid #3A4553;
}
</style>
</head>
<body>
<header>
<div class="navbar">
<div class="nav-logo"></div>
<div class="nav-search">
<select class="search-select">
<option>All</option>
<option>Books</option>
<option>Electronics</option>
<option>Home</option>
</select>
<input type="text" class="search-input">
<div class="search-icon">
<i class="fas fa-search"></i>
</div>
</div>
<div class="nav-right">
<div class="nav-item">
<span>Hello, Sign in</span>
<span>Account & Lists</span>
</div>
<div class="nav-item">
<span>Returns</span>
<span>& Orders</span>
</div>
<div class="nav-cart">
<i class="fas fa-shopping-cart"></i>
<span class="cart-count">0</span>
<span>Cart</span>
</div>
</div>
</div>
<div class="subnav">
<div class="subnav-menu">
<i class="fas fa-bars"></i>
<span>All</span>
</div>
<ul class="subnav-links">
<li>Today's Deals</li>
<li>Customer Service</li>
<li>Registry</li>
<li>Gift Cards</li>
<li>Sell</li>
</ul>
</div>
</header>
<div class="hero-image"></div>
<div class="shop-section">
<div class="shop-box">
<h2>Shop deals in Electronics</h2>
<img src="http://static.photos/technology/320x240/1">
<a href="#">See more</a>
</div>
<div class="shop-box">
<h2>Easy returns</h2>
<img src="http://static.photos/retail/320x240/3">
<a href="#">Learn more</a>
</div>
<div class="shop-box">
<h2>Health & Personal Care</h2>
<img src="http://static.photos/medical/320x240/1">
<a href="#">Shop now</a>
</div>
<div class="shop-box">
<h2>Home refresh ideas</h2>
<img src="http://static.photos/home/320x240/1">
<a href="#">Shop kitchen upgrades</a>
</div>
</div>
<footer>
<div class="back-to-top">
<a href="#" style="color: white;">Back to top</a>
</div>
<div class="footer-links">
<div class="footer-column">
<h3>Get to Know Us</h3>
<ul>
<li>Careers</li>
<li>Blog</li>
<li>About Amazon</li>
<li>Investor Relations</li>
</ul>
</div>
<div class="footer-column">
<h3>Make Money with Us</h3>
<ul>
<li>Sell products on Amazon</li>
<li>Sell on Amazon Business</li>
<li>Become an Affiliate</li>
<li>Advertise Your Products</li>
</ul>
</div>
<div class="footer-column">
<h3>Amazon Payment Products</h3>
<ul>
<li>Amazon Business Card</li>
<li>Shop with Points</li>
<li>Reload Your Balance</li>
<li>Amazon Currency Converter</li>
</ul>
</div>
<div class="footer-column">
<h3>Let Us Help You</h3>
<ul>
<li>Amazon and COVID-19</li>
<li>Your Account</li>
<li>Your Orders</li>
<li>Shipping Rates & Policies</li>
</ul>
</div>
</div>
<div class="footer-logo">
<div class="nav-logo"></div>
</div>
</footer>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</body>
</html> |