├── .env.example ├── .github └── workflows │ └── greetings.yml ├── .vscode └── settings.json ├── Code_Of_Conduct.md ├── Contributors.md ├── HomepageIMG2.png ├── ICECREAM.jpg ├── OFFER1.png ├── OFFER2.png ├── OFFER3.png ├── README.md ├── Screenshot 2024-10-04 120235.png ├── Screenshot 2024-10-04 161842.png ├── Screenshot 2024-10-04 170108.png ├── Screenshot 2024-10-04 170136.png ├── about_css_s.css ├── about_us_page.html ├── berry_pops.html ├── bg2.png ├── blog.html ├── blogs.png ├── boy.png ├── cart.css ├── cart.html ├── chatbot.gif ├── chatbot.html ├── cherry_pops.html ├── choco_hazel.html ├── contact.html ├── contributing.md ├── copyright.html ├── customer review page ├── customer review page (new design) ├── darkMode.js ├── drip_vanilla.html ├── facebook.png ├── google.png ├── gssoc24.png ├── hacktoberfest.png ├── header.jpg ├── home.png ├── ice cream.jpg ├── ice-cream.gif ├── ice-cream1.gif ├── icecream-details.html ├── images ├── 08-1333x2000.jpg ├── download (1).jpeg ├── download (2).jpeg ├── download (3).jpeg ├── download (4).jpeg ├── download (5).jpeg ├── download (6).jpeg ├── download (7).jpeg ├── download (8).jpeg ├── download (9).jpeg ├── download.jpeg ├── images (1).jpeg └── images.jpeg ├── index.html ├── instagram.png ├── login ├── login.css ├── login.html └── login.js ├── menu page (new design) ├── menu.png ├── new landing page ├── new menu page ├── nut_butter.html ├── offers.html ├── orange_pops.html ├── orange_pops1.html ├── preloader.js ├── preloaderStyle.css ├── privacy.html ├── profile.html ├── profile.js ├── profilepic.png ├── rain_classic.html ├── script.js ├── signup ├── signup.css ├── signup.html └── signup.js ├── style.css ├── styles.css ├── team-1.jpg ├── team-2.jpg ├── team-3.jpg ├── team-4.jpg ├── very_peachy.html ├── very_peachy2.html ├── very_straw.html └── website photo (1).png /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Code_Of_Conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/Code_Of_Conduct.md -------------------------------------------------------------------------------- /Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/Contributors.md -------------------------------------------------------------------------------- /HomepageIMG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/HomepageIMG2.png -------------------------------------------------------------------------------- /ICECREAM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/ICECREAM.jpg -------------------------------------------------------------------------------- /OFFER1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/OFFER1.png -------------------------------------------------------------------------------- /OFFER2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/OFFER2.png -------------------------------------------------------------------------------- /OFFER3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/OFFER3.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot 2024-10-04 120235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/Screenshot 2024-10-04 120235.png -------------------------------------------------------------------------------- /Screenshot 2024-10-04 161842.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/Screenshot 2024-10-04 161842.png -------------------------------------------------------------------------------- /Screenshot 2024-10-04 170108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/Screenshot 2024-10-04 170108.png -------------------------------------------------------------------------------- /Screenshot 2024-10-04 170136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/Screenshot 2024-10-04 170136.png -------------------------------------------------------------------------------- /about_css_s.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/about_css_s.css -------------------------------------------------------------------------------- /about_us_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/about_us_page.html -------------------------------------------------------------------------------- /berry_pops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/berry_pops.html -------------------------------------------------------------------------------- /bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/bg2.png -------------------------------------------------------------------------------- /blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/blog.html -------------------------------------------------------------------------------- /blogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/blogs.png -------------------------------------------------------------------------------- /boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/boy.png -------------------------------------------------------------------------------- /cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/cart.css -------------------------------------------------------------------------------- /cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/cart.html -------------------------------------------------------------------------------- /chatbot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/chatbot.gif -------------------------------------------------------------------------------- /chatbot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/chatbot.html -------------------------------------------------------------------------------- /cherry_pops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/cherry_pops.html -------------------------------------------------------------------------------- /choco_hazel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/choco_hazel.html -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/contact.html -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/contributing.md -------------------------------------------------------------------------------- /copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/copyright.html -------------------------------------------------------------------------------- /customer review page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/customer review page -------------------------------------------------------------------------------- /customer review page (new design): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/customer review page (new design) -------------------------------------------------------------------------------- /darkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/darkMode.js -------------------------------------------------------------------------------- /drip_vanilla.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/drip_vanilla.html -------------------------------------------------------------------------------- /facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/facebook.png -------------------------------------------------------------------------------- /google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/google.png -------------------------------------------------------------------------------- /gssoc24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/gssoc24.png -------------------------------------------------------------------------------- /hacktoberfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/hacktoberfest.png -------------------------------------------------------------------------------- /header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/header.jpg -------------------------------------------------------------------------------- /home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/home.png -------------------------------------------------------------------------------- /ice cream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/ice cream.jpg -------------------------------------------------------------------------------- /ice-cream.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/ice-cream.gif -------------------------------------------------------------------------------- /ice-cream1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/ice-cream1.gif -------------------------------------------------------------------------------- /icecream-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/icecream-details.html -------------------------------------------------------------------------------- /images/08-1333x2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/08-1333x2000.jpg -------------------------------------------------------------------------------- /images/download (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (1).jpeg -------------------------------------------------------------------------------- /images/download (2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (2).jpeg -------------------------------------------------------------------------------- /images/download (3).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (3).jpeg -------------------------------------------------------------------------------- /images/download (4).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (4).jpeg -------------------------------------------------------------------------------- /images/download (5).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (5).jpeg -------------------------------------------------------------------------------- /images/download (6).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (6).jpeg -------------------------------------------------------------------------------- /images/download (7).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (7).jpeg -------------------------------------------------------------------------------- /images/download (8).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (8).jpeg -------------------------------------------------------------------------------- /images/download (9).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download (9).jpeg -------------------------------------------------------------------------------- /images/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/download.jpeg -------------------------------------------------------------------------------- /images/images (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/images (1).jpeg -------------------------------------------------------------------------------- /images/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/images/images.jpeg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/index.html -------------------------------------------------------------------------------- /instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/instagram.png -------------------------------------------------------------------------------- /login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/login/login.css -------------------------------------------------------------------------------- /login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/login/login.html -------------------------------------------------------------------------------- /login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/login/login.js -------------------------------------------------------------------------------- /menu page (new design): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/menu page (new design) -------------------------------------------------------------------------------- /menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/menu.png -------------------------------------------------------------------------------- /new landing page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/new landing page -------------------------------------------------------------------------------- /new menu page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/new menu page -------------------------------------------------------------------------------- /nut_butter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/nut_butter.html -------------------------------------------------------------------------------- /offers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/offers.html -------------------------------------------------------------------------------- /orange_pops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/orange_pops.html -------------------------------------------------------------------------------- /orange_pops1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/orange_pops1.html -------------------------------------------------------------------------------- /preloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/preloader.js -------------------------------------------------------------------------------- /preloaderStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/preloaderStyle.css -------------------------------------------------------------------------------- /privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/privacy.html -------------------------------------------------------------------------------- /profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/profile.html -------------------------------------------------------------------------------- /profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/profile.js -------------------------------------------------------------------------------- /profilepic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/profilepic.png -------------------------------------------------------------------------------- /rain_classic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/rain_classic.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/script.js -------------------------------------------------------------------------------- /signup/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/signup/signup.css -------------------------------------------------------------------------------- /signup/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/signup/signup.html -------------------------------------------------------------------------------- /signup/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/signup/signup.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/style.css -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/styles.css -------------------------------------------------------------------------------- /team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/team-1.jpg -------------------------------------------------------------------------------- /team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/team-2.jpg -------------------------------------------------------------------------------- /team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/team-3.jpg -------------------------------------------------------------------------------- /team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/team-4.jpg -------------------------------------------------------------------------------- /very_peachy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/very_peachy.html -------------------------------------------------------------------------------- /very_peachy2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/very_peachy2.html -------------------------------------------------------------------------------- /very_straw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/very_straw.html -------------------------------------------------------------------------------- /website photo (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohinaf/basic-icecream-website/HEAD/website photo (1).png --------------------------------------------------------------------------------