├── Day-1 ├── index.html └── script.js ├── Day-10 ├── index.html ├── script.js └── style.css ├── Day-11 ├── index.html └── script.js ├── Day-12 ├── index.html └── script.js ├── Day-13 ├── index.html ├── script.js └── style.css ├── Day-14 ├── index.html ├── script.js └── style.css ├── Day-15 ├── index.html └── script.js ├── Day-16 ├── index.htm └── script.js ├── Day-17 ├── index.html └── script.js ├── Day-18 ├── index.html └── script.js ├── Day-19 ├── data.json ├── index.html └── script.js ├── Day-2 ├── index.html └── script.js ├── Day-20 ├── data.json ├── index.html └── script.js ├── Day-21 ├── data.json ├── index.html └── script.js ├── Day-22 ├── index.html └── script.js ├── Day-23 ├── index.html ├── load.html ├── script.js └── style.css ├── Day-24 ├── index.html └── script.js ├── Day-25 ├── index.html ├── script.js └── style.css ├── Day-26 ├── index.html └── script.js ├── Day-27 ├── index.html └── script.js ├── Day-28 ├── index.html └── script.js ├── Day-29 ├── data.json ├── index.html └── script.js ├── Day-3 ├── index.html ├── script.js └── style.css ├── Day-30 ├── index.html └── script.js ├── Day-31 ├── index.html └── script.js ├── Day-32 ├── index.html └── script.js ├── Day-33 ├── index.html └── script.js ├── Day-34 ├── index.html └── script.js ├── Day-35 ├── index.html └── script.js ├── Day-36 ├── index.html └── script.js ├── Day-37 ├── index.html └── script.js ├── Day-38 ├── data.json ├── index.html └── script.js ├── Day-39 ├── index.html └── script.js ├── Day-4 ├── index.html ├── script.js └── style.css ├── Day-40 ├── index.html └── script.js ├── Day-41 ├── index.html └── script.js ├── Day-42 ├── index.html └── script.js ├── Day-43 ├── index.html └── script.js ├── Day-44 ├── index.htm └── script.js ├── Day-45 ├── index.html └── script.js ├── Day-46 ├── index.html └── script.js ├── Day-47 ├── index.html └── script.js ├── Day-48 ├── index.html ├── script.js └── style.css ├── Day-49 ├── index.html └── script.js ├── Day-5 ├── index.html └── script.js ├── Day-50 ├── images.json ├── index.html └── script.js ├── Day-51 ├── index.html └── script.js ├── Day-52 ├── index.html └── script.js ├── Day-53 ├── index.html └── script.js ├── Day-54 ├── index.html └── script.js ├── Day-55 ├── index.html ├── react.jsx └── script.js ├── Day-56 ├── index.html ├── script.js └── stop.html ├── Day-6 ├── index.html └── script.js ├── Day-7 ├── index.html └── script.js ├── Day-8 ├── index.html └── script.js ├── Day-9 ├── index.html ├── script.js └── style.css ├── images ├── afg.png ├── agnipath.png ├── aus.png ├── ban.png ├── deluxroom.jpeg ├── hotel.png ├── image-1.jpg ├── image-2.jpg ├── image-3.jpg ├── ind.png ├── india.webp ├── iphone.jpeg ├── kaali.png ├── shopping.png └── suitroom.jpeg ├── library └── modules │ ├── credit.js │ └── login.js └── package.json /Day-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-1/index.html -------------------------------------------------------------------------------- /Day-1/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-1/script.js -------------------------------------------------------------------------------- /Day-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-10/index.html -------------------------------------------------------------------------------- /Day-10/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-10/script.js -------------------------------------------------------------------------------- /Day-10/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-10/style.css -------------------------------------------------------------------------------- /Day-11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-11/index.html -------------------------------------------------------------------------------- /Day-11/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-11/script.js -------------------------------------------------------------------------------- /Day-12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-12/index.html -------------------------------------------------------------------------------- /Day-12/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-12/script.js -------------------------------------------------------------------------------- /Day-13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-13/index.html -------------------------------------------------------------------------------- /Day-13/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-13/script.js -------------------------------------------------------------------------------- /Day-13/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-13/style.css -------------------------------------------------------------------------------- /Day-14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-14/index.html -------------------------------------------------------------------------------- /Day-14/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-14/script.js -------------------------------------------------------------------------------- /Day-14/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-14/style.css -------------------------------------------------------------------------------- /Day-15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-15/index.html -------------------------------------------------------------------------------- /Day-15/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-15/script.js -------------------------------------------------------------------------------- /Day-16/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-16/index.htm -------------------------------------------------------------------------------- /Day-16/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-16/script.js -------------------------------------------------------------------------------- /Day-17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-17/index.html -------------------------------------------------------------------------------- /Day-17/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-17/script.js -------------------------------------------------------------------------------- /Day-18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-18/index.html -------------------------------------------------------------------------------- /Day-18/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-18/script.js -------------------------------------------------------------------------------- /Day-19/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-19/data.json -------------------------------------------------------------------------------- /Day-19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-19/index.html -------------------------------------------------------------------------------- /Day-19/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-19/script.js -------------------------------------------------------------------------------- /Day-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-2/index.html -------------------------------------------------------------------------------- /Day-2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-2/script.js -------------------------------------------------------------------------------- /Day-20/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-20/data.json -------------------------------------------------------------------------------- /Day-20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-20/index.html -------------------------------------------------------------------------------- /Day-20/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-20/script.js -------------------------------------------------------------------------------- /Day-21/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-21/data.json -------------------------------------------------------------------------------- /Day-21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-21/index.html -------------------------------------------------------------------------------- /Day-21/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-21/script.js -------------------------------------------------------------------------------- /Day-22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-22/index.html -------------------------------------------------------------------------------- /Day-22/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-22/script.js -------------------------------------------------------------------------------- /Day-23/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-23/index.html -------------------------------------------------------------------------------- /Day-23/load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-23/load.html -------------------------------------------------------------------------------- /Day-23/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-23/script.js -------------------------------------------------------------------------------- /Day-23/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-23/style.css -------------------------------------------------------------------------------- /Day-24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-24/index.html -------------------------------------------------------------------------------- /Day-24/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-24/script.js -------------------------------------------------------------------------------- /Day-25/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-25/index.html -------------------------------------------------------------------------------- /Day-25/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-25/script.js -------------------------------------------------------------------------------- /Day-25/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-25/style.css -------------------------------------------------------------------------------- /Day-26/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-26/index.html -------------------------------------------------------------------------------- /Day-26/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-26/script.js -------------------------------------------------------------------------------- /Day-27/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-27/index.html -------------------------------------------------------------------------------- /Day-27/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-27/script.js -------------------------------------------------------------------------------- /Day-28/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-28/index.html -------------------------------------------------------------------------------- /Day-28/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-28/script.js -------------------------------------------------------------------------------- /Day-29/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-29/data.json -------------------------------------------------------------------------------- /Day-29/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-29/index.html -------------------------------------------------------------------------------- /Day-29/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-29/script.js -------------------------------------------------------------------------------- /Day-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-3/index.html -------------------------------------------------------------------------------- /Day-3/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-3/script.js -------------------------------------------------------------------------------- /Day-3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-3/style.css -------------------------------------------------------------------------------- /Day-30/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-30/index.html -------------------------------------------------------------------------------- /Day-30/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-30/script.js -------------------------------------------------------------------------------- /Day-31/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-31/index.html -------------------------------------------------------------------------------- /Day-31/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-31/script.js -------------------------------------------------------------------------------- /Day-32/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-32/index.html -------------------------------------------------------------------------------- /Day-32/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-32/script.js -------------------------------------------------------------------------------- /Day-33/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-33/index.html -------------------------------------------------------------------------------- /Day-33/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-33/script.js -------------------------------------------------------------------------------- /Day-34/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-34/index.html -------------------------------------------------------------------------------- /Day-34/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-34/script.js -------------------------------------------------------------------------------- /Day-35/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-35/index.html -------------------------------------------------------------------------------- /Day-35/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-35/script.js -------------------------------------------------------------------------------- /Day-36/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-36/index.html -------------------------------------------------------------------------------- /Day-36/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-36/script.js -------------------------------------------------------------------------------- /Day-37/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-37/index.html -------------------------------------------------------------------------------- /Day-37/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-37/script.js -------------------------------------------------------------------------------- /Day-38/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-38/data.json -------------------------------------------------------------------------------- /Day-38/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-38/index.html -------------------------------------------------------------------------------- /Day-38/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-38/script.js -------------------------------------------------------------------------------- /Day-39/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-39/index.html -------------------------------------------------------------------------------- /Day-39/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-39/script.js -------------------------------------------------------------------------------- /Day-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-4/index.html -------------------------------------------------------------------------------- /Day-4/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-4/script.js -------------------------------------------------------------------------------- /Day-4/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-4/style.css -------------------------------------------------------------------------------- /Day-40/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-40/index.html -------------------------------------------------------------------------------- /Day-40/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-40/script.js -------------------------------------------------------------------------------- /Day-41/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-41/index.html -------------------------------------------------------------------------------- /Day-41/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-41/script.js -------------------------------------------------------------------------------- /Day-42/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-42/index.html -------------------------------------------------------------------------------- /Day-42/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-42/script.js -------------------------------------------------------------------------------- /Day-43/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-43/index.html -------------------------------------------------------------------------------- /Day-43/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-43/script.js -------------------------------------------------------------------------------- /Day-44/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-44/index.htm -------------------------------------------------------------------------------- /Day-44/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-44/script.js -------------------------------------------------------------------------------- /Day-45/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-45/index.html -------------------------------------------------------------------------------- /Day-45/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-45/script.js -------------------------------------------------------------------------------- /Day-46/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-46/index.html -------------------------------------------------------------------------------- /Day-46/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-46/script.js -------------------------------------------------------------------------------- /Day-47/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-47/index.html -------------------------------------------------------------------------------- /Day-47/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-47/script.js -------------------------------------------------------------------------------- /Day-48/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-48/index.html -------------------------------------------------------------------------------- /Day-48/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-48/script.js -------------------------------------------------------------------------------- /Day-48/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-48/style.css -------------------------------------------------------------------------------- /Day-49/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-49/index.html -------------------------------------------------------------------------------- /Day-49/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-49/script.js -------------------------------------------------------------------------------- /Day-5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-5/index.html -------------------------------------------------------------------------------- /Day-5/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-5/script.js -------------------------------------------------------------------------------- /Day-50/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-50/images.json -------------------------------------------------------------------------------- /Day-50/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-50/index.html -------------------------------------------------------------------------------- /Day-50/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-50/script.js -------------------------------------------------------------------------------- /Day-51/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-51/index.html -------------------------------------------------------------------------------- /Day-51/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-51/script.js -------------------------------------------------------------------------------- /Day-52/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-52/index.html -------------------------------------------------------------------------------- /Day-52/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-52/script.js -------------------------------------------------------------------------------- /Day-53/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-53/index.html -------------------------------------------------------------------------------- /Day-53/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-53/script.js -------------------------------------------------------------------------------- /Day-54/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-54/index.html -------------------------------------------------------------------------------- /Day-54/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-54/script.js -------------------------------------------------------------------------------- /Day-55/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-55/index.html -------------------------------------------------------------------------------- /Day-55/react.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-55/react.jsx -------------------------------------------------------------------------------- /Day-55/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day-56/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-56/index.html -------------------------------------------------------------------------------- /Day-56/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-56/script.js -------------------------------------------------------------------------------- /Day-56/stop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-56/stop.html -------------------------------------------------------------------------------- /Day-6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-6/index.html -------------------------------------------------------------------------------- /Day-6/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-6/script.js -------------------------------------------------------------------------------- /Day-7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-7/index.html -------------------------------------------------------------------------------- /Day-7/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-7/script.js -------------------------------------------------------------------------------- /Day-8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-8/index.html -------------------------------------------------------------------------------- /Day-8/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-8/script.js -------------------------------------------------------------------------------- /Day-9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-9/index.html -------------------------------------------------------------------------------- /Day-9/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-9/script.js -------------------------------------------------------------------------------- /Day-9/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/Day-9/style.css -------------------------------------------------------------------------------- /images/afg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/afg.png -------------------------------------------------------------------------------- /images/agnipath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/agnipath.png -------------------------------------------------------------------------------- /images/aus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/aus.png -------------------------------------------------------------------------------- /images/ban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/ban.png -------------------------------------------------------------------------------- /images/deluxroom.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/deluxroom.jpeg -------------------------------------------------------------------------------- /images/hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/hotel.png -------------------------------------------------------------------------------- /images/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/image-1.jpg -------------------------------------------------------------------------------- /images/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/image-2.jpg -------------------------------------------------------------------------------- /images/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/image-3.jpg -------------------------------------------------------------------------------- /images/ind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/ind.png -------------------------------------------------------------------------------- /images/india.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/india.webp -------------------------------------------------------------------------------- /images/iphone.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/iphone.jpeg -------------------------------------------------------------------------------- /images/kaali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/kaali.png -------------------------------------------------------------------------------- /images/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/shopping.png -------------------------------------------------------------------------------- /images/suitroom.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/images/suitroom.jpeg -------------------------------------------------------------------------------- /library/modules/credit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/library/modules/credit.js -------------------------------------------------------------------------------- /library/modules/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/library/modules/login.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Himanshu12866/UI-JavaScript/HEAD/package.json --------------------------------------------------------------------------------