├── 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/HEAD/1_Resp_Cards/images/a1.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/images/a2.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/images/a3.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/images/a4.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/images/a5.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/images/a6.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/images/a7.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/images/a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/images/a8.jpg -------------------------------------------------------------------------------- /1_Resp_Cards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/index.html -------------------------------------------------------------------------------- /1_Resp_Cards/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/script.js -------------------------------------------------------------------------------- /1_Resp_Cards/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/1_Resp_Cards/style.css -------------------------------------------------------------------------------- /2_CardFlip_3D/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/2_CardFlip_3D/a1.jpg -------------------------------------------------------------------------------- /2_CardFlip_3D/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/2_CardFlip_3D/a2.jpg -------------------------------------------------------------------------------- /2_CardFlip_3D/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/2_CardFlip_3D/index.html -------------------------------------------------------------------------------- /2_CardFlip_3D/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/2_CardFlip_3D/style.css -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p1.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p10.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p11.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p12.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p13.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p14.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p2.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p3.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p4.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p5.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p6.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p7.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p8.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/images/p9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/images/p9.jpeg -------------------------------------------------------------------------------- /3D_rotating_image_gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/index.html -------------------------------------------------------------------------------- /3D_rotating_image_gallery/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3D_rotating_image_gallery/style.css -------------------------------------------------------------------------------- /3_Add_to_cart/3D_img_flip/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/3D_img_flip/bg1.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/3D_img_flip/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/3D_img_flip/bg2.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/3D_img_flip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/3D_img_flip/index.html -------------------------------------------------------------------------------- /3_Add_to_cart/3D_img_flip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/3D_img_flip/style.css -------------------------------------------------------------------------------- /3_Add_to_cart/images/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s1.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s11.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s12.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s15.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s18.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s19.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s2.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s24.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s25.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s3.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s4.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s5.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s6.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/images/s7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/images/s7.jpg -------------------------------------------------------------------------------- /3_Add_to_cart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/index.html -------------------------------------------------------------------------------- /3_Add_to_cart/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/script.js -------------------------------------------------------------------------------- /3_Add_to_cart/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/3_Add_to_cart/style.css -------------------------------------------------------------------------------- /4_Card_Effect/images/p1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p1.jpeg -------------------------------------------------------------------------------- /4_Card_Effect/images/p2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p2.jpeg -------------------------------------------------------------------------------- /4_Card_Effect/images/p3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p3.jpeg -------------------------------------------------------------------------------- /4_Card_Effect/images/p4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p4.jpeg -------------------------------------------------------------------------------- /4_Card_Effect/images/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p5.jpg -------------------------------------------------------------------------------- /4_Card_Effect/images/p6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p6.jpeg -------------------------------------------------------------------------------- /4_Card_Effect/images/p7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p7.jpeg -------------------------------------------------------------------------------- /4_Card_Effect/images/p8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p8.jpeg -------------------------------------------------------------------------------- /4_Card_Effect/images/p9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/images/p9.jpeg -------------------------------------------------------------------------------- /4_Card_Effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/index.html -------------------------------------------------------------------------------- /4_Card_Effect/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/script.js -------------------------------------------------------------------------------- /4_Card_Effect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Card_Effect/style.css -------------------------------------------------------------------------------- /4_Registration_form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Registration_form/index.html -------------------------------------------------------------------------------- /4_Registration_form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/4_Registration_form/style.css -------------------------------------------------------------------------------- /5_Registration_Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/5_Registration_Form/index.html -------------------------------------------------------------------------------- /5_Registration_Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/5_Registration_Form/style.css -------------------------------------------------------------------------------- /6_Typing_Animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/6_Typing_Animation/index.html -------------------------------------------------------------------------------- /6_Typing_Animation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/6_Typing_Animation/script.js -------------------------------------------------------------------------------- /6_Typing_Animation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/6_Typing_Animation/style.css -------------------------------------------------------------------------------- /7_DropDown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/7_DropDown/index.html -------------------------------------------------------------------------------- /7_DropDown/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/7_DropDown/script.js -------------------------------------------------------------------------------- /7_DropDown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/7_DropDown/style.css -------------------------------------------------------------------------------- /8_Card_Slider/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/card.js -------------------------------------------------------------------------------- /8_Card_Slider/image/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a1.jpg -------------------------------------------------------------------------------- /8_Card_Slider/image/a10.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a10.avif -------------------------------------------------------------------------------- /8_Card_Slider/image/a11.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a11.avif -------------------------------------------------------------------------------- /8_Card_Slider/image/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a2.jpg -------------------------------------------------------------------------------- /8_Card_Slider/image/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a3.jpg -------------------------------------------------------------------------------- /8_Card_Slider/image/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a4.jpg -------------------------------------------------------------------------------- /8_Card_Slider/image/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a5.jpg -------------------------------------------------------------------------------- /8_Card_Slider/image/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a6.jpg -------------------------------------------------------------------------------- /8_Card_Slider/image/a8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a8.webp -------------------------------------------------------------------------------- /8_Card_Slider/image/a9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/image/a9.webp -------------------------------------------------------------------------------- /8_Card_Slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/index.html -------------------------------------------------------------------------------- /8_Card_Slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/script.js -------------------------------------------------------------------------------- /8_Card_Slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/8_Card_Slider/style.css -------------------------------------------------------------------------------- /Animated Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Animated Background/index.html -------------------------------------------------------------------------------- /Animated Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Animated Background/style.css -------------------------------------------------------------------------------- /Clip Image in Text/a16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Clip Image in Text/a16.jpg -------------------------------------------------------------------------------- /Clip Image in Text/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Clip Image in Text/index.html -------------------------------------------------------------------------------- /Clip Image in Text/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Clip Image in Text/style.css -------------------------------------------------------------------------------- /Digital_Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Digital_Clock/index.html -------------------------------------------------------------------------------- /Digital_Clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Digital_Clock/style.css -------------------------------------------------------------------------------- /Expanding Card/images/p1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p1.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p10.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p11.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p13.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p14.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p15.png -------------------------------------------------------------------------------- /Expanding Card/images/p3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p3.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p4.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p5.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p6.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p7.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p8.jpeg -------------------------------------------------------------------------------- /Expanding Card/images/p9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/images/p9.jpeg -------------------------------------------------------------------------------- /Expanding Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/index.html -------------------------------------------------------------------------------- /Expanding Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Expanding Card/style.css -------------------------------------------------------------------------------- /Login Form/bg_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Login Form/bg_img.jpg -------------------------------------------------------------------------------- /Login Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Login Form/index.html -------------------------------------------------------------------------------- /Login Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Login Form/style.css -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast1/stc1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast1/stc1.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast1/stc2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast1/stc2.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast1/stc3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast1/stc3.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast1/stc4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast1/stc4.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast1/stc5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast1/stc5.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast2/hrc1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast2/hrc1.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast2/hrc2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast2/hrc2.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast2/hrc3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast2/hrc3.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast2/hrc4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast2/hrc4.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast2/hrc5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast2/hrc5.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast3/gotc1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast3/gotc1.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast3/gotc2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast3/gotc2.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast3/gotc3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast3/gotc3.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast3/gotc4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast3/gotc4.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/cast3/gotc5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/cast3/gotc5.jpeg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/got_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/got_image.jpg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/got_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/got_logo.png -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/harry_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/harry_image.jpg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/harry_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/harry_logo.png -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/index.html -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/st_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/st_image.jpg -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/st_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/st_logo.png -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/st_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/st_logo2.png -------------------------------------------------------------------------------- /Movie_Cards_Tutorial/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Movie_Cards_Tutorial/style.css -------------------------------------------------------------------------------- /Neon_Btn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Neon_Btn/index.html -------------------------------------------------------------------------------- /Neon_Btn/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Neon_Btn/style.css -------------------------------------------------------------------------------- /Sidebar Menu/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Sidebar Menu/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Sidebar Menu/a1.png -------------------------------------------------------------------------------- /Sidebar Menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Sidebar Menu/index.html -------------------------------------------------------------------------------- /Sidebar Menu/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Sidebar Menu/script.js -------------------------------------------------------------------------------- /Sidebar Menu/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Sidebar Menu/style.css -------------------------------------------------------------------------------- /Sliding_Navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Sliding_Navbar/index.html -------------------------------------------------------------------------------- /Sliding_Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Sliding_Navbar/index.js -------------------------------------------------------------------------------- /Sliding_Navbar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Sliding_Navbar/style.css -------------------------------------------------------------------------------- /Video In Text/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Video In Text/index.html -------------------------------------------------------------------------------- /Video In Text/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Video In Text/style.css -------------------------------------------------------------------------------- /Video In Text/v3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/Video In Text/v3.mp4 -------------------------------------------------------------------------------- /a1_Image_Slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/index.html -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a60.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a61.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a62.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a63.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a64.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a65.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a66.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a67.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a68.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a69.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a70.jpg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a71.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a71.jpeg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a72.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a72.jpeg -------------------------------------------------------------------------------- /a1_Image_Slider/story_images/a73.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/story_images/a73.jpeg -------------------------------------------------------------------------------- /a1_Image_Slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a1_Image_Slider/style.css -------------------------------------------------------------------------------- /a2_Image_Slider/images/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a2_Image_Slider/images/p1.jpg -------------------------------------------------------------------------------- /a2_Image_Slider/images/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a2_Image_Slider/images/p2.jpg -------------------------------------------------------------------------------- /a2_Image_Slider/images/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a2_Image_Slider/images/p3.jpg -------------------------------------------------------------------------------- /a2_Image_Slider/images/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a2_Image_Slider/images/p4.jpg -------------------------------------------------------------------------------- /a2_Image_Slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a2_Image_Slider/index.html -------------------------------------------------------------------------------- /a2_Image_Slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a2_Image_Slider/script.js -------------------------------------------------------------------------------- /a2_Image_Slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhikumar21/WebDevExplorers/HEAD/a2_Image_Slider/style.css --------------------------------------------------------------------------------