This project is an Amazon-like clone website that simulates a basic e-commerce layout using HTML and CSS.
index.html # Main HTML file style.css # CSS file for styling assets/ # Folder for images (like amazon_logo.png, hero_image.jpg, etc.)
- HTML5
- CSS3
- Font Awesome Icons
- Google Fonts
-
Clone the repository:
git clone https://github.com/your-repo/amazon-clone.git
-
Navigate to the project directory:
cd amazon-clone
-
Open the project:
- You can open the
index.html
file in your preferred web browser to see the website.
- You can open the
- Font Awesome: Icons are imported using Font Awesome. You can change or add icons from Font Awesome.
- Google Fonts: The project uses
Arial, Helvetica, sans-serif
as the default fonts. You can replace or add fonts by importing from Google Fonts.
- Logo: Located in the left corner, using the
amazon_logo.png
image. - Address: A delivery location option with an icon.
- Search Bar: A search input with a dropdown for selecting search categories.
- Sign In: A link to sign in and view account lists.
- Orders: Links for returns and orders.
- Cart: A cart icon linked to the shopping cart.
- Hero Image: A background image displaying an Amazon-like banner.
- Message Box: A notification asking if the user wants to visit the Amazon India website.
- A four-column layout showcasing different product categories like fashion, personal care, and popular items.
- Links to various sections such as Careers, Blog, Investor Relations, and more.
- Back-to-Top button at the top of the footer to scroll back to the top of the page.
- Language and currency selection options for users.
- Update the
logo
class background image in the CSS file:.logo { background-image: url('path-to-your-logo.png'); }
- Replace
hero_image.jpg
in the.main
section of the CSS:.main { background-image: url('your-hero-image.jpg'); }
- You can change the text and links in the footer by modifying the
<footer>
section in theindex.html
file.
This project is open-source and free to use under the MIT license. Feel free to clone and modify it for personal or educational purposes.