├── 1_Resp_Cards ├── images │ ├── a1.jpg │ ├── a2.jpg │ ├── a3.jpg │ ├── a4.jpg │ ├── a5.jpg │ ├── a6.jpg │ ├── a7.jpg │ └── a8.jpg ├── index.html ├── script.js └── style.css ├── 2_CardFlip_3D ├── a1.jpg ├── a2.jpg ├── index.html └── style.css ├── 3D_rotating_image_gallery ├── images │ ├── p1.jpeg │ ├── p10.jpeg │ ├── p11.jpeg │ ├── p12.jpeg │ ├── p13.jpeg │ ├── p14.jpeg │ ├── p2.jpeg │ ├── p3.jpeg │ ├── p4.jpeg │ ├── p5.jpeg │ ├── p6.jpeg │ ├── p7.jpeg │ ├── p8.jpeg │ └── p9.jpeg ├── index.html └── style.css ├── 3_Add_to_cart ├── 3D_img_flip │ ├── bg1.jpg │ ├── bg2.jpg │ ├── index.html │ └── style.css ├── images │ ├── s1.jpg │ ├── s11.jpg │ ├── s12.jpg │ ├── s15.jpg │ ├── s18.jpg │ ├── s19.jpg │ ├── s2.jpg │ ├── s24.jpg │ ├── s25.jpg │ ├── s3.jpg │ ├── s4.jpg │ ├── s5.jpg │ ├── s6.jpg │ └── s7.jpg ├── index.html ├── script.js └── style.css ├── 4_Card_Effect ├── images │ ├── p1.jpeg │ ├── p2.jpeg │ ├── p3.jpeg │ ├── p4.jpeg │ ├── p5.jpg │ ├── p6.jpeg │ ├── p7.jpeg │ ├── p8.jpeg │ └── p9.jpeg ├── index.html ├── script.js └── style.css ├── 4_Registration_form ├── index.html └── style.css ├── 5_Registration_Form ├── index.html └── style.css ├── 6_Typing_Animation ├── index.html ├── script.js └── style.css ├── 7_DropDown ├── index.html ├── script.js └── style.css ├── 8_Card_Slider ├── card.js ├── image │ ├── a1.jpg │ ├── a10.avif │ ├── a11.avif │ ├── a2.jpg │ ├── a3.jpg │ ├── a4.jpg │ ├── a5.jpg │ ├── a6.jpg │ ├── a8.webp │ └── a9.webp ├── index.html ├── script.js └── style.css ├── Animated Background ├── index.html └── style.css ├── Clip Image in Text ├── a16.jpg ├── index.html └── style.css ├── Digital_Clock ├── index.html └── style.css ├── Expanding Card ├── images │ ├── p1.jpeg │ ├── p10.jpeg │ ├── p11.jpeg │ ├── p13.jpeg │ ├── p14.jpeg │ ├── p15.png │ ├── p3.jpeg │ ├── p4.jpeg │ ├── p5.jpeg │ ├── p6.jpeg │ ├── p7.jpeg │ ├── p8.jpeg │ └── p9.jpeg ├── index.html └── style.css ├── Login Form ├── bg_img.jpg ├── index.html └── style.css ├── Movie_Cards_Tutorial ├── cast1 │ ├── stc1.jpeg │ ├── stc2.jpeg │ ├── stc3.jpeg │ ├── stc4.jpeg │ └── stc5.jpeg ├── cast2 │ ├── hrc1.jpeg │ ├── hrc2.jpeg │ ├── hrc3.jpeg │ ├── hrc4.jpeg │ └── hrc5.jpeg ├── cast3 │ ├── gotc1.jpeg │ ├── gotc2.jpeg │ ├── gotc3.jpeg │ ├── gotc4.jpeg │ └── gotc5.jpeg ├── got_image.jpg ├── got_logo.png ├── harry_image.jpg ├── harry_logo.png ├── index.html ├── st_image.jpg ├── st_logo.png ├── st_logo2.png └── style.css ├── Neon_Btn ├── index.html └── style.css ├── Sidebar Menu ├── .vscode │ └── settings.json ├── a1.png ├── index.html ├── script.js └── style.css ├── Sliding_Navbar ├── index.html ├── index.js └── style.css ├── Video In Text ├── index.html ├── style.css └── v3.mp4 ├── a1_Image_Slider ├── index.html ├── story_images │ ├── a60.jpg │ ├── a61.jpg │ ├── a62.jpg │ ├── a63.jpg │ ├── a64.jpg │ ├── a65.jpg │ ├── a66.jpg │ ├── a67.jpg │ ├── a68.jpg │ ├── a69.jpg │ ├── a70.jpg │ ├── a71.jpeg │ ├── a72.jpeg │ └── a73.jpeg └── style.css └── a2_Image_Slider ├── images ├── p1.jpg ├── p2.jpg ├── p3.jpg └── p4.jpg ├── index.html ├── script.js └── style.css /1_Resp_Cards/images/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/61515d5e3d64844905ccf81a51943385c0926f57/1_Resp_Cards/images/a1.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/61515d5e3d64844905ccf81a51943385c0926f57/1_Resp_Cards/images/a2.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/61515d5e3d64844905ccf81a51943385c0926f57/1_Resp_Cards/images/a3.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/61515d5e3d64844905ccf81a51943385c0926f57/1_Resp_Cards/images/a4.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/61515d5e3d64844905ccf81a51943385c0926f57/1_Resp_Cards/images/a5.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/61515d5e3d64844905ccf81a51943385c0926f57/1_Resp_Cards/images/a6.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/61515d5e3d64844905ccf81a51943385c0926f57/1_Resp_Cards/images/a7.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/61515d5e3d64844905ccf81a51943385c0926f57/1_Resp_Cards/images/a8.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Lorem ipsum, dolor sit amet consectetur adipisicing elit. Natus fugiat perspiciatis voluptatibus eligendi, deserunt corrupti atque ipsa, ipsam magnam iste consequuntur laborum consequatur harum blanditiis, porro quae quidem laboriosam inventore?
68 | 69 | 70 |Web | App Developer
17 |followers
29 |following
34 |views
39 |Your Cart is Empty
' 51 | } 52 | else{ 53 | cartContainer.innerHTML = ''; 54 | 55 | cart.map((cartItem) => { 56 | cartContainer.innerHTML += 57 | `${productsData[cartItem.id].title}
62 |${product.title}
85 |Background animation using html and css
13 |Harry Potter
30 |Beauty and the beast
31 | 32 |Titanic
53 |The Wolf of Wall Street
54 | 55 |Getaway
78 |Monte Carlo
79 | 80 |Top Gun
101 |Misson Impossible
102 | 103 |Twilight
123 |Underwater
124 | 125 |