Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Coffee Shop Project
This is a simple Coffee Shop website with several sections like home, product, about, review, contact us, blogs, and menu. It allows users to explore the coffee shop's products, read reviews, contact us, and more.

Sections of the Website:
Home: Welcoming section with a description of the coffee shop.
About: Information about what makes the coffee shop special.
Menu: Display of the available menu items.
Products: A section for various coffee-related products.
Review: Customer reviews.
Contact Us: A contact form for reaching the shop  to get to the coffee shop using the map and filling out the information such as name, email and phone number
Blogs: Posts about the coffee shop, its culture, and product
  • Loading branch information
YasminAhmed1456 authored Sep 26, 2024
0 parents commit 9800b64
Show file tree
Hide file tree
Showing 42 changed files with 1,133 additions and 0 deletions.
Binary file added project/img/about.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/about2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/bans.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/bans2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/bans3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/bans4.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/bg2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/blog1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/blog2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/blog3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/images (2).jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/images.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/istockphoto-1270368564-612x612.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/logo2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/menu-4.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/menu-5.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/menu-6.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/menu-7.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/menu-8.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/menu_1.webp
Binary file not shown.
Binary file added project/img/menu_2.webp
Binary file not shown.
Binary file added project/img/menu_3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/pic1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/pic2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/pic3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added project/img/pic4.jpeg
Binary file added project/img/pic5.jpeg
Binary file added project/img/prod1.jpeg
Binary file added project/img/prod2.jpeg
Binary file added project/img/prod3.jpeg
Binary file added project/img/product-1.jpeg
Binary file added project/img/product-2.jpeg
Binary file added project/img/product-3.jpeg
Binary file added project/img/product-4.jpeg
Binary file added project/img/product-5.jpeg
Binary file added project/img/qoute-2.png
Binary file added project/img/quote-img.png
403 changes: 403 additions & 0 deletions project/index.html

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions project/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
let navbar = document.querySelector('.nav');
let cartItem = document.querySelector('.cart-items-container');
let searchForm = document.querySelector('.search-form');

// Toggle the navbar
document.querySelector('#menu-btn').onclick = () => {
navbar.classList.toggle('active');
cartItem.classList.remove('active');
searchForm.classList.remove('active');
};

// Toggle the cart-items-container
document.querySelector('#cart-btn').onclick = () => {
cartItem.classList.toggle('active');
navbar.classList.remove('active');
searchForm.classList.remove('active');
};

// Toggle the Search-Form
document.querySelector('#search-btn').onclick = () => {
searchForm.classList.toggle('active');
navbar.classList.remove('active');
cartItem.classList.remove('active');
};

window.onscroll = () => {
navbar.classList.remove('active');
cartItem.classList.remove('active');
searchForm.classList.remove('active');
};
Loading

0 comments on commit 9800b64

Please sign in to comment.