├── Account Create ├── Account.css └── Account.html ├── Button ├── Button │ ├── index.html │ └── style.css ├── index.html └── style.css ├── Calendar └── calendar.html ├── Car Game ├── Login_Form │ ├── form.css │ └── form.html └── cargame.html ├── Facebook Login Page ├── page.css └── page.html ├── Full page navigation ├── index.html └── style.css ├── Hospital Registration Form └── hospital _registration_form.html ├── Loading ├── index.html ├── index.js └── style.css ├── Login Page (with Header) ├── index.html └── style.css ├── Login Page Logo ├── index.html ├── index.js └── style.css ├── Login Page Max ├── index.html └── style.css ├── Login Page New ├── index.html └── style.css ├── Login Page like ├── index.html └── style.css ├── Login page Basic ├── index.html └── style.css ├── Login page home ├── inex.html └── style.css ├── Login page ├── index.html └── style.css ├── Loginform └── index.html ├── Magic Sidebar Menu ├── index.html └── style.css ├── Modern Login ├── index.html ├── script.js └── style.css ├── Profile Stack ├── index.html ├── index.js ├── style.css └── xyz.ico ├── Quiz game ├── Quiz.css └── Quiz.html ├── Registrtion form ├── Login_Design │ ├── design.css │ └── design.html ├── Registration Form │ ├── index.css │ └── index.html └── form.html ├── Responsive Cake Website ├── about-img.jpeg ├── banner-1.jpeg ├── banner-2.jpeg ├── banner-3.jpeg ├── blog-1.jpeg ├── blog-2.jpeg ├── blog-3.jpeg ├── blog-4.jpeg ├── blog-5.jpeg ├── blog-6.jpeg ├── cat-1.jpeg ├── cat-2.jpeg ├── cat-3.jpeg ├── cat-4.jpeg ├── cat-5.jpeg ├── front-view-chocolate-cake-stand.jpeg ├── gallery-img-1.jpeg ├── gallery-img-2.jpeg ├── gallery-img-3.jpeg ├── gallery-img-4.jpeg ├── gallery-img-5.jpeg ├── gallery-img-6.jpeg ├── h1.png ├── h2.png ├── h3.png ├── heading-bg.jpeg ├── home-bg1.jpeg ├── home-img-1.png ├── home-img-2.png ├── home-img-3.png ├── home12.png ├── home22.png ├── icons-1.png ├── icons-2.png ├── icons-3.png ├── index.html ├── main.js ├── payment.png ├── pic-1.png ├── pic-2.png ├── pic-3.png ├── pic-4.png ├── pic-5.png ├── pic-6.png ├── product-1.jpeg ├── product-2.jpeg ├── product-3.jpeg ├── product-4.jpeg ├── product-5.jpeg ├── product-6.jpeg ├── product-7.jpeg ├── product-8.jpeg └── style.css ├── Responsive Pizza Website ├── Chrome page │ └── chrome_page.html ├── about-img.png ├── dish-1.png ├── dish-2.png ├── dish-3.png ├── dish-4.png ├── dish-5.png ├── dish-6.png ├── h1.png ├── home-img-2.png ├── home-img-3.png ├── index.html ├── loader.gif ├── main.js ├── menu-1.jpeg ├── menu-2.jpeg ├── menu-3.jpeg ├── menu-4.jpeg ├── menu-5.jpeg ├── menu-6.jpeg ├── menu-7.jpeg ├── menu-8.jpeg ├── menu-9.jpeg ├── pic-1.png ├── pic-2 (1).png ├── pic-2.png ├── pic-3.png ├── pic-4.png └── style.css ├── Restaurant Landing page ├── index.css └── index.html ├── RgBa color picker └── index.html ├── Rock Paper Scissor ├── paper.css └── paper.html ├── Sign Up Page ├── index.html └── style.css ├── SmartWatch ├── Watch.css ├── Watch.html └── Watch.js ├── UI Responsive Nav Bar ├── index.html ├── index.js └── style.css ├── Webside ├── index.html └── style.css ├── Website ├── index.css └── index.html ├── html ├── Practice │ ├── bootstrap-resume.html │ └── xyz.ico ├── const.js ├── edit.html ├── hg.css ├── hg.html ├── hg.js ├── index.html ├── index.js ├── pdf.css ├── pdf.html └── pdf.js └── login form ├── index.html └── style.css /Account Create/Account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Account Create/Account.css -------------------------------------------------------------------------------- /Account Create/Account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Account Create/Account.html -------------------------------------------------------------------------------- /Button/Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Button/Button/index.html -------------------------------------------------------------------------------- /Button/Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Button/Button/style.css -------------------------------------------------------------------------------- /Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Button/index.html -------------------------------------------------------------------------------- /Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Button/style.css -------------------------------------------------------------------------------- /Calendar/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Calendar/calendar.html -------------------------------------------------------------------------------- /Car Game/Login_Form/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Car Game/Login_Form/form.css -------------------------------------------------------------------------------- /Car Game/Login_Form/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Car Game/Login_Form/form.html -------------------------------------------------------------------------------- /Car Game/cargame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Car Game/cargame.html -------------------------------------------------------------------------------- /Facebook Login Page/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Facebook Login Page/page.css -------------------------------------------------------------------------------- /Facebook Login Page/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Facebook Login Page/page.html -------------------------------------------------------------------------------- /Full page navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Full page navigation/index.html -------------------------------------------------------------------------------- /Full page navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Full page navigation/style.css -------------------------------------------------------------------------------- /Hospital Registration Form/hospital _registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Hospital Registration Form/hospital _registration_form.html -------------------------------------------------------------------------------- /Loading/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Loading/index.html -------------------------------------------------------------------------------- /Loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Loading/index.js -------------------------------------------------------------------------------- /Loading/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Loading/style.css -------------------------------------------------------------------------------- /Login Page (with Header)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page (with Header)/index.html -------------------------------------------------------------------------------- /Login Page (with Header)/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page (with Header)/style.css -------------------------------------------------------------------------------- /Login Page Logo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page Logo/index.html -------------------------------------------------------------------------------- /Login Page Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page Logo/index.js -------------------------------------------------------------------------------- /Login Page Logo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page Logo/style.css -------------------------------------------------------------------------------- /Login Page Max/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page Max/index.html -------------------------------------------------------------------------------- /Login Page Max/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page Max/style.css -------------------------------------------------------------------------------- /Login Page New/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page New/index.html -------------------------------------------------------------------------------- /Login Page New/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page New/style.css -------------------------------------------------------------------------------- /Login Page like/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page like/index.html -------------------------------------------------------------------------------- /Login Page like/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login Page like/style.css -------------------------------------------------------------------------------- /Login page Basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login page Basic/index.html -------------------------------------------------------------------------------- /Login page Basic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login page Basic/style.css -------------------------------------------------------------------------------- /Login page home/inex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login page home/inex.html -------------------------------------------------------------------------------- /Login page home/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login page home/style.css -------------------------------------------------------------------------------- /Login page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login page/index.html -------------------------------------------------------------------------------- /Login page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Login page/style.css -------------------------------------------------------------------------------- /Loginform/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Loginform/index.html -------------------------------------------------------------------------------- /Magic Sidebar Menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Magic Sidebar Menu/index.html -------------------------------------------------------------------------------- /Magic Sidebar Menu/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Magic Sidebar Menu/style.css -------------------------------------------------------------------------------- /Modern Login/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Modern Login/index.html -------------------------------------------------------------------------------- /Modern Login/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Modern Login/script.js -------------------------------------------------------------------------------- /Modern Login/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Modern Login/style.css -------------------------------------------------------------------------------- /Profile Stack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Profile Stack/index.html -------------------------------------------------------------------------------- /Profile Stack/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profile Stack/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Profile Stack/style.css -------------------------------------------------------------------------------- /Profile Stack/xyz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Profile Stack/xyz.ico -------------------------------------------------------------------------------- /Quiz game/Quiz.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Quiz game/Quiz.css -------------------------------------------------------------------------------- /Quiz game/Quiz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Quiz game/Quiz.html -------------------------------------------------------------------------------- /Registrtion form/Login_Design/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Registrtion form/Login_Design/design.css -------------------------------------------------------------------------------- /Registrtion form/Login_Design/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Registrtion form/Login_Design/design.html -------------------------------------------------------------------------------- /Registrtion form/Registration Form/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Registrtion form/Registration Form/index.css -------------------------------------------------------------------------------- /Registrtion form/Registration Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Registrtion form/Registration Form/index.html -------------------------------------------------------------------------------- /Registrtion form/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Registrtion form/form.html -------------------------------------------------------------------------------- /Responsive Cake Website/about-img.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/about-img.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/banner-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/banner-1.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/banner-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/banner-2.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/banner-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/banner-3.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/blog-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/blog-1.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/blog-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/blog-2.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/blog-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/blog-3.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/blog-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/blog-4.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/blog-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/blog-5.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/blog-6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/blog-6.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/cat-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/cat-1.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/cat-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/cat-2.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/cat-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/cat-3.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/cat-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/cat-4.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/cat-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/cat-5.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/front-view-chocolate-cake-stand.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/front-view-chocolate-cake-stand.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/gallery-img-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/gallery-img-1.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/gallery-img-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/gallery-img-2.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/gallery-img-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/gallery-img-3.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/gallery-img-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/gallery-img-4.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/gallery-img-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/gallery-img-5.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/gallery-img-6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/gallery-img-6.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/h1.png -------------------------------------------------------------------------------- /Responsive Cake Website/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/h2.png -------------------------------------------------------------------------------- /Responsive Cake Website/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/h3.png -------------------------------------------------------------------------------- /Responsive Cake Website/heading-bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/heading-bg.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/home-bg1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/home-bg1.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/home-img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/home-img-1.png -------------------------------------------------------------------------------- /Responsive Cake Website/home-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/home-img-2.png -------------------------------------------------------------------------------- /Responsive Cake Website/home-img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/home-img-3.png -------------------------------------------------------------------------------- /Responsive Cake Website/home12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/home12.png -------------------------------------------------------------------------------- /Responsive Cake Website/home22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/home22.png -------------------------------------------------------------------------------- /Responsive Cake Website/icons-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/icons-1.png -------------------------------------------------------------------------------- /Responsive Cake Website/icons-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/icons-2.png -------------------------------------------------------------------------------- /Responsive Cake Website/icons-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/icons-3.png -------------------------------------------------------------------------------- /Responsive Cake Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/index.html -------------------------------------------------------------------------------- /Responsive Cake Website/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/main.js -------------------------------------------------------------------------------- /Responsive Cake Website/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/payment.png -------------------------------------------------------------------------------- /Responsive Cake Website/pic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/pic-1.png -------------------------------------------------------------------------------- /Responsive Cake Website/pic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/pic-2.png -------------------------------------------------------------------------------- /Responsive Cake Website/pic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/pic-3.png -------------------------------------------------------------------------------- /Responsive Cake Website/pic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/pic-4.png -------------------------------------------------------------------------------- /Responsive Cake Website/pic-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/pic-5.png -------------------------------------------------------------------------------- /Responsive Cake Website/pic-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/pic-6.png -------------------------------------------------------------------------------- /Responsive Cake Website/product-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/product-1.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/product-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/product-2.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/product-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/product-3.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/product-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/product-4.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/product-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/product-5.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/product-6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/product-6.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/product-7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/product-7.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/product-8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/product-8.jpeg -------------------------------------------------------------------------------- /Responsive Cake Website/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Cake Website/style.css -------------------------------------------------------------------------------- /Responsive Pizza Website/Chrome page/chrome_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/Chrome page/chrome_page.html -------------------------------------------------------------------------------- /Responsive Pizza Website/about-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/about-img.png -------------------------------------------------------------------------------- /Responsive Pizza Website/dish-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/dish-1.png -------------------------------------------------------------------------------- /Responsive Pizza Website/dish-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/dish-2.png -------------------------------------------------------------------------------- /Responsive Pizza Website/dish-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/dish-3.png -------------------------------------------------------------------------------- /Responsive Pizza Website/dish-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/dish-4.png -------------------------------------------------------------------------------- /Responsive Pizza Website/dish-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/dish-5.png -------------------------------------------------------------------------------- /Responsive Pizza Website/dish-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/dish-6.png -------------------------------------------------------------------------------- /Responsive Pizza Website/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/h1.png -------------------------------------------------------------------------------- /Responsive Pizza Website/home-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/home-img-2.png -------------------------------------------------------------------------------- /Responsive Pizza Website/home-img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/home-img-3.png -------------------------------------------------------------------------------- /Responsive Pizza Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/index.html -------------------------------------------------------------------------------- /Responsive Pizza Website/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/loader.gif -------------------------------------------------------------------------------- /Responsive Pizza Website/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/main.js -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-1.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-2.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-3.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-4.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-5.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-6.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-7.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-8.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/menu-9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/menu-9.jpeg -------------------------------------------------------------------------------- /Responsive Pizza Website/pic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/pic-1.png -------------------------------------------------------------------------------- /Responsive Pizza Website/pic-2 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/pic-2 (1).png -------------------------------------------------------------------------------- /Responsive Pizza Website/pic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/pic-2.png -------------------------------------------------------------------------------- /Responsive Pizza Website/pic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/pic-3.png -------------------------------------------------------------------------------- /Responsive Pizza Website/pic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/pic-4.png -------------------------------------------------------------------------------- /Responsive Pizza Website/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Responsive Pizza Website/style.css -------------------------------------------------------------------------------- /Restaurant Landing page/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Restaurant Landing page/index.css -------------------------------------------------------------------------------- /Restaurant Landing page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Restaurant Landing page/index.html -------------------------------------------------------------------------------- /RgBa color picker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/RgBa color picker/index.html -------------------------------------------------------------------------------- /Rock Paper Scissor/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Rock Paper Scissor/paper.css -------------------------------------------------------------------------------- /Rock Paper Scissor/paper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Rock Paper Scissor/paper.html -------------------------------------------------------------------------------- /Sign Up Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Sign Up Page/index.html -------------------------------------------------------------------------------- /Sign Up Page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Sign Up Page/style.css -------------------------------------------------------------------------------- /SmartWatch/Watch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/SmartWatch/Watch.css -------------------------------------------------------------------------------- /SmartWatch/Watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/SmartWatch/Watch.html -------------------------------------------------------------------------------- /SmartWatch/Watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/SmartWatch/Watch.js -------------------------------------------------------------------------------- /UI Responsive Nav Bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/UI Responsive Nav Bar/index.html -------------------------------------------------------------------------------- /UI Responsive Nav Bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/UI Responsive Nav Bar/index.js -------------------------------------------------------------------------------- /UI Responsive Nav Bar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/UI Responsive Nav Bar/style.css -------------------------------------------------------------------------------- /Webside/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Webside/index.html -------------------------------------------------------------------------------- /Webside/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Webside/style.css -------------------------------------------------------------------------------- /Website/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Website/index.css -------------------------------------------------------------------------------- /Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/Website/index.html -------------------------------------------------------------------------------- /html/Practice/bootstrap-resume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/Practice/bootstrap-resume.html -------------------------------------------------------------------------------- /html/Practice/xyz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/Practice/xyz.ico -------------------------------------------------------------------------------- /html/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/const.js -------------------------------------------------------------------------------- /html/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/edit.html -------------------------------------------------------------------------------- /html/hg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/hg.css -------------------------------------------------------------------------------- /html/hg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/hg.html -------------------------------------------------------------------------------- /html/hg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/hg.js -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/index.html -------------------------------------------------------------------------------- /html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/index.js -------------------------------------------------------------------------------- /html/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/pdf.css -------------------------------------------------------------------------------- /html/pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/pdf.html -------------------------------------------------------------------------------- /html/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/html/pdf.js -------------------------------------------------------------------------------- /login form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/login form/index.html -------------------------------------------------------------------------------- /login form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmrchandan006/Full-Stack-Projects/HEAD/login form/style.css --------------------------------------------------------------------------------