├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING_GUIDELINES.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── doc_report.yml │ ├── feature_request.yml │ ├── other.yml │ └── style.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── greetings.yml │ ├── issue-close-comment.yml │ └── pr-merge-comment.yml ├── .gitignore ├── 404.html ├── Components ├── Accordions │ ├── 3D-Accordion │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Card-Styled-Accordion │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Glassmorphism-Accordion │ │ ├── assets │ │ │ └── background.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Horizontal-Picture-Accordion │ │ ├── assets │ │ │ ├── image1.jpg │ │ │ ├── image2.jpg │ │ │ ├── image3.jpg │ │ │ ├── image4.jpg │ │ │ └── image5.jpg │ │ ├── index.html │ │ └── style.css │ ├── Modern-Accordion │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Neumorphism-Accordion │ │ ├── index.html │ │ └── style.css │ ├── Simple-Accordion │ │ ├── index.html │ │ └── style.css │ └── Tilted-Accordion │ │ ├── index.html │ │ └── style.css ├── Backgrounds │ ├── 3D-Boxes-Background │ │ ├── assets │ │ │ └── background.webp │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── 3D-Floating-Particles-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Abstract-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Abstract-Particle-Swarm-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Animated-Colorful-Background │ │ ├── index.html │ │ └── style.css │ ├── Animated-Moon-Background │ │ ├── index.html │ │ └── style.css │ ├── Animated-Triangles-Background │ │ ├── index.html │ │ └── style.css │ ├── Aurora-Borealis-Background │ │ ├── index.html │ │ └── style.css │ ├── Bubbles-Floating-Background-2 │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Bubbles-Floating-Background │ │ ├── index.html │ │ └── style.css │ ├── Coalesce-Animation-Background │ │ ├── index.html │ │ ├── js │ │ │ ├── coalesce.js │ │ │ ├── noise.min.js │ │ │ ├── script.js │ │ │ └── util.js │ │ └── style.css │ ├── Colour-Drop-Background │ │ ├── index.html │ │ └── style.css │ ├── Colour-Shifting-Background │ │ ├── index.html │ │ └── style.css │ ├── Connecting-Dots-Background │ │ ├── assets │ │ │ └── background.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Dot-Wave-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Dynamic-Gradient-Background │ │ ├── index.html │ │ └── style.css │ ├── Falling-Leaf-Background │ │ ├── assets │ │ │ ├── leaves1.png │ │ │ ├── leaves2.png │ │ │ ├── leaves3.png │ │ │ └── leaves4.png │ │ ├── index.html │ │ └── style.css │ ├── FireFly-Animation-Background │ │ ├── index.html │ │ └── style.css │ ├── Floating-Heart-Animation-Background │ │ ├── index.html │ │ └── style.css │ ├── Glassmorphism-Background-2 │ │ ├── index.html │ │ └── style.css │ ├── Glassmorphism-Background │ │ ├── index.html │ │ └── style.css │ ├── Gliding-Diagonals-Background │ │ ├── index.html │ │ └── style.css │ ├── Gradient-Waves-Background │ │ ├── index.html │ │ └── style.css │ ├── Infinite-Scroll-Emoji-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Interactive-Balls-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Interactive-Hexagonal-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Interactive-Squares-Background │ │ ├── index.html │ │ └── style.css │ ├── Mouse-Hover-Particle-Background │ │ ├── assets │ │ │ └── background.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Mouse-Responsive-Particle-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Mouse-Responsive-Web-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Moving-Squares-Background │ │ ├── index.html │ │ └── style.css │ ├── Neon-Graphics-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Neumorphism-Background │ │ ├── index.html │ │ └── style.css │ ├── Outer-Space-Background │ │ ├── assets │ │ │ ├── background.png │ │ │ ├── cloud.png │ │ │ └── twinkle.png │ │ ├── index.html │ │ └── style.css │ ├── Parallax-Background │ │ ├── images │ │ │ ├── hill1.png │ │ │ ├── hill2.png │ │ │ ├── hill3.png │ │ │ ├── hill4.png │ │ │ ├── hill5.png │ │ │ ├── leaf.png │ │ │ ├── plant.png │ │ │ └── tree.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Particle-Animation-Background │ │ ├── index.html │ │ └── style.css │ ├── Pipeline-Animation-Background │ │ ├── index.html │ │ ├── js │ │ │ ├── noise.min.js │ │ │ ├── pipeline.js │ │ │ ├── script.js │ │ │ └── util.js │ │ └── style.css │ ├── Raindrop-Ripple-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Retro-80s-Grid-Background │ │ ├── index.html │ │ └── style.css │ ├── Rounded-Square-Animation-Background │ │ ├── index.html │ │ └── style.css │ ├── Screensaver-Background │ │ ├── index.html │ │ └── style.css │ ├── Shooting-Stars-Background │ │ ├── index.html │ │ └── style.css │ ├── Shooting-Stars-Night-Background │ │ ├── index.html │ │ └── style.css │ ├── Smoke-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Snowball-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Squares-Animation-Background │ │ ├── index.html │ │ └── style.css │ ├── Swirl-Animation-Background │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Vintage-Paper-Texture-Background │ │ ├── index.html │ │ └── style.css │ ├── Vintage-Sepia-Film-Background │ │ ├── index.html │ │ └── style.css │ ├── Waves-Background │ │ ├── index.html │ │ ├── style.css │ │ └── wave.png │ └── Zoom-And-Fade-Background │ │ ├── assets │ │ └── background.jpg │ │ ├── index.html │ │ └── style.css ├── Breadcrumbs │ ├── 3D-Animated-Breadcrumb │ │ ├── index.html │ │ └── style.css │ ├── 3D-Breadcrumb │ │ ├── index.html │ │ └── style.css │ ├── Animated-Breadcrumb │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Chevron-Breadcrumb │ │ ├── index.html │ │ └── style.css │ ├── Colored-Breadcrumb │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Gaming-Breadcrumb │ │ ├── index.html │ │ └── style.css │ ├── Navigator-Breadcrumb │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Parallel-Park-Breadcrumb │ │ ├── index.html │ │ └── style.css │ └── Tilted-Breadcrumb │ │ ├── index.html │ │ └── style.css ├── Buttons │ ├── 3D-Button-2 │ │ ├── index.html │ │ └── style.css │ ├── 3D-Button │ │ ├── index.html │ │ └── style.css │ ├── Arrow-Hover-Button │ │ ├── index.html │ │ └── style.css │ ├── Bat-Button │ │ ├── index.html │ │ └── style.css │ ├── Blob-Button │ │ ├── index.html │ │ └── style.css │ ├── Bookmark-Effect-Button │ │ ├── index.html │ │ └── style.css │ ├── Celebration-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Confetti-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Delete-Animation-Button │ │ ├── index.html │ │ └── style.css │ ├── Download-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Dynamic-Hover-Button │ │ ├── index.html │ │ └── style.css │ ├── Fizzy-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Flipside-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Floating-Action-Button │ │ ├── assets │ │ │ ├── download.svg │ │ │ ├── pencil-square.svg │ │ │ ├── plus.svg │ │ │ └── share.svg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Flower-Effect-Button │ │ ├── index.html │ │ └── style.css │ ├── Gaming-Theme-Button │ │ ├── index.html │ │ └── style.css │ ├── Glassmorphism-Button │ │ ├── index.html │ │ └── style.css │ ├── Glitch-Effect-Button │ │ ├── index.html │ │ └── style.css │ ├── Glow-Button │ │ ├── index.html │ │ └── style.css │ ├── Glow-Up-Button │ │ ├── index.html │ │ └── style.css │ ├── Go-Back-Button │ │ ├── index.html │ │ └── style.css │ ├── Gradient-Border-Button │ │ ├── index.html │ │ └── style.css │ ├── Gradient-Button │ │ ├── index.html │ │ └── style.css │ ├── Hover-Animation-Button │ │ ├── index.html │ │ └── style.css │ ├── Hover-Button │ │ ├── assets │ │ │ └── background.jpeg │ │ ├── index.html │ │ └── style.css │ ├── Impossible-Toggle-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Invisible-Hover-Button │ │ ├── index.html │ │ └── style.css │ ├── Jelly-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Keyboard-Effect-Button │ │ ├── index.html │ │ └── style.css │ ├── Like-Effect-Button │ │ ├── index.html │ │ └── style.css │ ├── Liquid-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Mask-Hover-Button │ │ ├── index.html │ │ └── style.css │ ├── Minecraft-Button │ │ ├── index.html │ │ └── style.css │ ├── Morphing-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Nature-Button │ │ ├── index.html │ │ └── style.css │ ├── Naughty-Submit-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Neon-Button │ │ ├── index.html │ │ └── style.css │ ├── Neumorphism-Button │ │ ├── index.html │ │ └── style.css │ ├── Perspective-Button │ │ ├── index.html │ │ └── style.css │ ├── Pikachu-Effect-Hover-Button │ │ ├── index.html │ │ └── style.css │ ├── Play-Now-Button │ │ ├── index.html │ │ └── style.css │ ├── Pulsing-Button │ │ ├── index.html │ │ └── style.css │ ├── Push-Diagonal-Hover-Button │ │ ├── index.html │ │ └── style.css │ ├── Push-Sideward-Hover-Button │ │ ├── index.html │ │ └── style.css │ ├── Push-Upward-Hover-Button │ │ ├── index.html │ │ └── style.css │ ├── Rainbow-Animation-Button │ │ ├── index.html │ │ └── style.css │ ├── Send-Message-Button │ │ ├── index.html │ │ └── style.css │ ├── Skeuomorphism-Button │ │ ├── index.html │ │ └── style.css │ ├── Social-Hover-Animated-Button │ │ ├── index.html │ │ └── style.css │ ├── Social-Hover-Tone-Button │ │ ├── assets │ │ │ └── background.jpg │ │ ├── index.html │ │ └── style.css │ ├── Swipe-Right-Button-2 │ │ ├── index.html │ │ └── style.css │ ├── Swipe-Right-Button │ │ ├── index.html │ │ └── style.css │ ├── Teddy-Button │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Thin-Button │ │ ├── index.html │ │ └── style.css │ ├── Wiggle-Button │ │ ├── index.html │ │ └── style.css │ └── Youtube-Button │ │ ├── index.html │ │ └── style.css ├── Cards │ ├── 3D-Animated-Card │ │ ├── assets │ │ │ └── background.jpg │ │ ├── index.html │ │ └── style.css │ ├── 3D-Popup-Card │ │ ├── assets │ │ │ ├── image.jpg │ │ │ └── image2.png │ │ ├── index.html │ │ └── style.css │ ├── 404-Error-Card │ │ ├── index.html │ │ └── style.css │ ├── Animated-Product-Card │ │ ├── index.html │ │ └── style.css │ ├── Attractive-Social-Card │ │ ├── index.html │ │ └── style.css │ ├── Blog-Post-Card │ │ ├── images │ │ │ ├── image1.jpg │ │ │ ├── image2.jpg │ │ │ ├── image3.jpg │ │ │ ├── image4.jpg │ │ │ ├── image5.jpg │ │ │ ├── image6.jpg │ │ │ ├── image7.jpg │ │ │ ├── image8.jpg │ │ │ ├── image9.jpg │ │ │ ├── user1.jpg │ │ │ ├── user2.jpg │ │ │ └── user3.jpg │ │ ├── index.html │ │ └── style.css │ ├── Book-Card │ │ ├── index.html │ │ └── style.css │ ├── Code-Snippet-Card │ │ ├── index.html │ │ └── style.css │ ├── Color-Palette-Card │ │ ├── index.html │ │ └── style.css │ ├── Drag-&-Drop-Card │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Draggable-Card │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Flip-Card │ │ ├── background-image.jpg │ │ ├── index.html │ │ └── style.css │ ├── Glassmorphism-Card │ │ ├── index.html │ │ └── style.css │ ├── Gradient-Card │ │ ├── index.html │ │ └── style.css │ ├── Greeting-Card │ │ ├── index.html │ │ └── style.css │ ├── Individual-Focus-Card │ │ ├── assets │ │ │ ├── image1.jpg │ │ │ ├── image2.jpg │ │ │ └── image3.jpg │ │ ├── index.html │ │ └── style.css │ ├── Lineup-Card │ │ ├── index.html │ │ └── style.css │ ├── Mouse-Tracker-Card │ │ ├── index.html │ │ └── style.css │ ├── Neumorphism-Card │ │ ├── index.html │ │ └── style.css │ ├── Port-ID-Card │ │ ├── assets │ │ │ ├── background.jpg │ │ │ └── image.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Premium-Card │ │ ├── index.html │ │ └── style.css │ ├── Product-Card │ │ ├── assets │ │ │ ├── background.png │ │ │ └── laptop.jpg │ │ ├── index.html │ │ └── style.css │ ├── Product-Order-Validation-Card │ │ ├── index.html │ │ └── style.css │ ├── Product-Preview-Card │ │ ├── index.html │ │ └── style.css │ ├── Profile-Card │ │ ├── assets │ │ │ ├── background.jpg │ │ │ └── profile.jpg │ │ ├── index.html │ │ └── style.css │ ├── Quotes-Card │ │ ├── index.html │ │ └── style.css │ ├── Slider-Card │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Sliding-Sticky-Notes-Card │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Testimonial-Card │ │ ├── assets │ │ │ ├── avatar.png │ │ │ ├── mountain.jpg │ │ │ └── quotes.png │ │ ├── index.html │ │ └── style.css │ ├── Timeline-Card │ │ ├── index.html │ │ └── style.css │ └── User-Attention-Card │ │ ├── index.html │ │ └── style.css ├── Carousels │ ├── 3D-Card-Carousel │ │ ├── images │ │ │ ├── background.png │ │ │ ├── dragon_1.jpg │ │ │ ├── dragon_10.jpg │ │ │ ├── dragon_2.jpg │ │ │ ├── dragon_3.jpg │ │ │ ├── dragon_4.jpg │ │ │ ├── dragon_5.jpg │ │ │ ├── dragon_6.jpg │ │ │ ├── dragon_7.jpg │ │ │ ├── dragon_8.jpg │ │ │ ├── dragon_9.jpg │ │ │ └── model.png │ │ ├── index.html │ │ └── style.css │ ├── 3D-Image-Carousel │ │ ├── index.html │ │ └── style.css │ ├── Animated-Carousel │ │ ├── assets │ │ │ ├── image1.png │ │ │ ├── image2.png │ │ │ ├── image3.png │ │ │ ├── image4.png │ │ │ ├── image5.png │ │ │ ├── image6.png │ │ │ ├── image7.png │ │ │ └── image8.png │ │ ├── index.html │ │ └── style.css │ ├── Apple-Themed-Carousel │ │ ├── assets │ │ │ ├── image1.jpg │ │ │ ├── image2.jpg │ │ │ ├── image3.jpg │ │ │ ├── image4.jpg │ │ │ ├── image5.jpg │ │ │ └── image6.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Bootstrap-Carousel │ │ ├── index.html │ │ └── style.css │ ├── Circular-Carousel │ │ ├── index.html │ │ └── style.css │ ├── Draggable-Carousel │ │ ├── images │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Image-Carousel │ │ ├── images │ │ │ ├── img-1.jpg │ │ │ ├── img-2.jpg │ │ │ ├── img-3.jpg │ │ │ └── img-4.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Infinite-Carousel │ │ ├── index.html │ │ └── style.css │ ├── Instagram-Post-Carousel │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Neumorphism-Carousel │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Playlist-Carousel │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Polaroid-Like-Photo-Carousel │ │ ├── index.html │ │ └── style.css │ ├── Revolving-Carousel │ │ ├── index.html │ │ └── style.css │ ├── Simple-Carousel │ │ ├── index.html │ │ └── style.css │ ├── Strip-Carousel │ │ ├── images │ │ │ ├── img-1.jpg │ │ │ ├── img-2.jpg │ │ │ ├── img-3.jpg │ │ │ └── img-4.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ └── Touch-Slider-Carousel │ │ ├── images │ │ ├── image1.png │ │ ├── image2.png │ │ └── image3.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css ├── Cursors │ ├── Cultural-Cursor │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Difference-Dot-Cursor │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Dot-Cursor │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Dynamic-Element-Tracker-Cursor │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Follow-Along-Cursor │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ └── Pulsating-Cursor │ │ ├── index.html │ │ ├── script.js │ │ └── style.css ├── Dropdowns │ ├── Apple-Themed-Dropdown │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Multilevel-Dropdown │ │ ├── index.html │ │ └── style.css │ ├── Multiple-Selection-Dropdown │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── The-More-Menu-Dropdown │ │ ├── index.html │ │ └── style.css │ └── Theme-Toggle-Dropdown │ │ ├── index.html │ │ ├── script.js │ │ └── style.css ├── Error-Pages │ ├── 404-Error-Page │ │ ├── index.html │ │ └── style.css │ ├── Neon-Error-Page │ │ ├── index.html │ │ └── style.css │ ├── Neon-Glow-Error-Page │ │ ├── index.html │ │ └── style.css │ └── Simple-404-Error-Page │ │ ├── assets │ │ └── image.png │ │ ├── index.html │ │ └── style.css ├── Footers │ ├── Animated-Footer │ │ ├── assets │ │ │ └── image.jpeg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Animated-Stylish-Footer │ │ ├── assets │ │ │ ├── image1.png │ │ │ ├── image2.gif │ │ │ └── image3.gif │ │ ├── index.html │ │ └── style.css │ ├── Classic-Footer │ │ ├── assets │ │ │ ├── discord.png │ │ │ ├── github.png │ │ │ ├── instagram.png │ │ │ ├── linkedin.png │ │ │ ├── twitter.png │ │ │ └── youtube.png │ │ ├── index.html │ │ └── style.css │ ├── Glassmorphism-Footer │ │ ├── index.html │ │ └── style.css │ ├── Interactive-Footer │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Minimalist-Footer │ │ ├── index.html │ │ └── style.css │ ├── Parallax-Footer │ │ ├── index.html │ │ └── style.css │ ├── Simple-Footer │ │ ├── index.html │ │ └── style.css │ ├── Split-Footer │ │ ├── index.html │ │ └── style.css │ ├── Sticky-Footer │ │ ├── index.html │ │ └── style.css │ ├── Subscription-Footer │ │ ├── assets │ │ │ └── logo.jpeg │ │ ├── index.html │ │ └── style.css │ ├── Waves-Footer │ │ ├── index.html │ │ └── style.css │ └── Wavy-Footer │ │ ├── index.html │ │ └── style.css ├── Forms │ ├── All-In-One-Form │ │ ├── index.html │ │ └── style.css │ ├── Animated-Border-Login-Form │ │ ├── index.html │ │ └── style.css │ ├── Animated-Login-Form │ │ ├── index.html │ │ └── style.css │ ├── Animated-Login-Register-Form │ │ ├── assets │ │ │ └── background.gif │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Animated-Login-Signup-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Animated-Progressive-Form │ │ ├── index.html │ │ └── style.css │ ├── Animated-SignIn-Form │ │ ├── index.html │ │ └── style.css │ ├── Application-Form │ │ ├── index.html │ │ └── style.css │ ├── Black-Red-Signup-Form │ │ ├── assets │ │ │ └── background.jpg │ │ ├── index.html │ │ └── style.css │ ├── Cart-Checkout-Form │ │ ├── index.html │ │ └── style.css │ ├── Contact-Form │ │ ├── index.html │ │ └── style.css │ ├── Customer-Complaint-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Drag-And-Drop-Form │ │ ├── icons │ │ │ ├── cloud.png │ │ │ ├── image.png │ │ │ ├── pdf.png │ │ │ └── video.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Event-Form │ │ ├── index.html │ │ └── style.css │ ├── Feedback-Form-2 │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Feedback-Form │ │ ├── assets │ │ │ └── background.jpeg │ │ ├── index.html │ │ └── style.css │ ├── File-Upload-Form-2 │ │ ├── index.html │ │ └── style.css │ ├── File-Upload-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Game-Signup-Form │ │ ├── assets │ │ │ ├── Norse-Bold.otf │ │ │ └── background-video.mp4 │ │ ├── index.html │ │ └── style.css │ ├── Glassmorphism-Login-Form │ │ ├── index.html │ │ └── style.css │ ├── Hacker-Login-Form │ │ ├── index.html │ │ └── style.css │ ├── Hotel-Reservation-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Login-Form │ │ ├── assets │ │ │ └── image.jpg │ │ ├── index.html │ │ └── style.css │ ├── Medical-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Neon-SignUp-Form │ │ ├── assets │ │ │ └── background.gif │ │ ├── index.html │ │ └── style.css │ ├── Neumorphism-Form │ │ ├── assets │ │ │ └── image.png │ │ ├── index.html │ │ └── style.css │ ├── Newsletter-Subscription-Form-2 │ │ ├── index.html │ │ └── style.css │ ├── Newsletter-Subscription-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── OTP-Verification-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Order-Cancellation-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Payment-Form │ │ ├── index.html │ │ └── style.css │ ├── Portfolio-Contact-Form │ │ ├── assets │ │ │ └── contact.jpg │ │ ├── index.html │ │ └── style.css │ ├── QR-Code-Generator-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Registration-Form │ │ ├── index.html │ │ └── style.css │ ├── Reset-Password-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Sign-Up-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Slide-Login-Register-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Survey-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Swag-Shipment-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Terms-And-Conditions-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Text-To-Voice-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Toggling-SignIn-SignUp-Form │ │ ├── index.html │ │ └── style.css │ ├── Torch-Effect-Login-Form │ │ ├── index.html │ │ └── style.css │ └── Yeti-Login-Form │ │ ├── index.html │ │ ├── script.js │ │ └── style.css ├── Heroes │ ├── Carousel-Hero │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Collage-Style-Hero │ │ ├── index.html │ │ └── style.css │ ├── Full-Screen-Image-Hero │ │ ├── assets │ │ │ └── background.jpg │ │ ├── index.html │ │ └── style.css │ ├── Full-Screen-Video-Hero │ │ ├── assets │ │ │ └── waterfall.mp4 │ │ ├── index.html │ │ └── style.css │ ├── Interactive-Particle-Hero │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Neon-Glow-Hero │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Split-Screen-Hero │ │ ├── index.html │ │ └── style.css │ ├── Spooky-Themed-Hero │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── Nightcore-Demo.ttf │ │ │ │ └── Something-Strange.ttf │ │ │ └── images │ │ │ │ ├── background.png │ │ │ │ ├── heroimage.png │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ └── image3.png │ │ ├── index.html │ │ └── style.css │ └── Text-Only-Hero │ │ ├── index.html │ │ └── style.css ├── Loaders │ ├── 3D-Cube-Loader │ │ ├── index.html │ │ └── style.css │ ├── Alexa-Loader │ │ ├── index.html │ │ └── style.css │ ├── Animated-Progress-Loader │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Bar-Fill-Loader │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Bike-Loader │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Bird-Loader │ │ ├── index.html │ │ └── style.css │ ├── Book-Loader │ │ ├── index.html │ │ └── style.css │ ├── Bouncing-Loader │ │ ├── index.html │ │ └── style.css │ ├── Box-Loader │ │ ├── index.html │ │ └── style.css │ ├── Clock-Loader │ │ ├── index.html │ │ └── style.css │ ├── Colour-Changing-Loader │ │ ├── index.html │ │ └── style.css │ ├── Crazy-Arch-Loader │ │ ├── index.html │ │ └── style.css │ ├── Cuboid-Loader │ │ ├── index.html │ │ └── style.css │ ├── Cup-Loader │ │ ├── assets │ │ │ └── liquid.jpeg │ │ ├── index.html │ │ └── style.css │ ├── Customizable-Percentage-Loader │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Dice-Loader │ │ ├── index.html │ │ └── style.css │ ├── Flipping-Text-Loader │ │ ├── index.html │ │ └── style.css │ ├── Frosted-Glass-Loader │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Gear-Loader │ │ ├── index.html │ │ └── style.css │ ├── Glassmorphism-Loader │ │ ├── index.html │ │ └── style.css │ ├── Gradient-Stroke-Bounce-Loader │ │ ├── index.html │ │ └── style.css │ ├── Heart-Beat-Loader │ │ ├── index.html │ │ └── style.css │ ├── Helix-Loader │ │ ├── index.html │ │ └── style.css │ ├── Hexagonal-Ripple-Loader │ │ ├── index.html │ │ └── style.css │ ├── Hourglass-Loader │ │ ├── index.html │ │ └── style.css │ ├── Infinity-Loader │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Maze-Loader │ │ ├── index.html │ │ └── style.css │ ├── Mesmerizing-Loader │ │ ├── index.html │ │ └── style.css │ ├── Mouse-On-Wheel-Loader │ │ ├── index.html │ │ └── style.css │ ├── Newton-Cradle-Loader │ │ ├── index.html │ │ └── style.css │ ├── Pan-Flip-Loader │ │ ├── index.html │ │ └── style.css │ ├── Pendulum-Loader │ │ ├── index.html │ │ └── style.css │ ├── Polygon-Loader │ │ ├── css │ │ │ ├── demo.css │ │ │ └── normalize.css │ │ ├── index.html │ │ └── script.js │ ├── Progress-Text-Loader │ │ ├── index.html │ │ └── style.css │ ├── Reveal-Loader │ │ ├── index.html │ │ └── style.css │ ├── Rippling-Neumorphism-Loader │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Rotating-Circle-Loader │ │ ├── image.jpg │ │ ├── index.html │ │ └── style.css │ ├── Rotating-Squares-Loader │ │ ├── index.html │ │ └── style.css │ ├── Round-Squares-Loader │ │ ├── index.html │ │ └── style.css │ ├── Spinning-Loader │ │ ├── index.html │ │ └── style.css │ ├── Square-Grid-Loader │ │ ├── index.html │ │ └── style.css │ ├── Square-Loader │ │ ├── index.html │ │ └── style.css │ ├── Squid-Game-Loader │ │ ├── index.html │ │ └── style.css │ ├── Terminal-Loader │ │ ├── index.html │ │ └── style.css │ ├── Triangle-Loader │ │ ├── css │ │ │ ├── demo.css │ │ │ └── normalize.css │ │ ├── index.html │ │ └── script.js │ ├── Truck-Delivery-Loader │ │ ├── index.html │ │ └── style.css │ ├── Typewriter-Loader │ │ ├── index.html │ │ └── style.css │ └── Wifi-Loader │ │ ├── index.html │ │ └── style.css ├── Navigation-Bars │ ├── 3D-Reveal-Side-Navigation-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Bootstrap-Navigation-Bar │ │ └── index.html │ ├── Circular-Navigation-Bar-2 │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Circular-Navigation-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Collapsible-Navigation-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Elastic-Side-Navigation-Bar │ │ ├── css │ │ │ ├── normalize.css │ │ │ ├── sidebar.css │ │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ │ ├── script.js │ │ │ └── snap.svg-min.js │ ├── Floating-Action-Button-Navigation-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Glassmorphism-Navigation-Bar │ │ ├── assets │ │ │ └── background.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Hamburger-Navigation-Bar │ │ ├── index.html │ │ └── style.css │ ├── Horizontal-Navigation-Bar │ │ ├── index.html │ │ └── style.css │ ├── Minimalist-Navigation-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Modern-Navigation-Bar │ │ ├── index.html │ │ └── style.css │ ├── Numbered-Navigation-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Overlay-Navigation-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Pulse-Animated-Navigation-Bar │ │ ├── index.html │ │ └── style.css │ ├── Scroll-Triggered-Navigation-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Side-Navigation-Bar │ │ ├── index.html │ │ └── style.css │ └── Simple-Navigation-Bar │ │ ├── index.html │ │ └── style.css ├── Popups │ ├── Confirmation-Dialog-Popup │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Context-Menu-Popup │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Cookie-Consent-Popup │ │ ├── images │ │ │ ├── close.png │ │ │ └── cookie.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Error-Notification-Popup │ │ ├── assets │ │ │ └── error.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Login-Register-Popup │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Sidebar-Popup │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Slide-Reveal-Popup │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Subscribe-Popup │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Success-Notification-Popup │ │ ├── assets │ │ │ └── success.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Toast-Message-Popup │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Warning-Notification-Popup │ │ ├── assets │ │ │ └── warning.png │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ └── Welcome-Offer-Popup │ │ ├── assets │ │ └── welcome.webp │ │ ├── index.html │ │ ├── script.js │ │ └── style.css ├── Scrollbars │ ├── Elegant-Custom-Scrollbar │ │ ├── index.html │ │ └── style.css │ ├── Modern-Minimalist-Scrollbar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ └── Rainbow-Scrollbar │ │ ├── assets │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ └── image4.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css ├── Search-Bars │ ├── 3D-Search-Bar │ │ ├── index.html │ │ └── style.css │ ├── Autocomplete-Search-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Expandable-Search-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Google-Search-Bar │ │ ├── assets │ │ │ └── logo.png │ │ ├── index.html │ │ └── style.css │ ├── Icon-To-Bar-Search-Bar │ │ ├── index.html │ │ └── style.css │ ├── Magnifying-Glass-Search-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Neumorphism-Search-Bar │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Operating-Search-Bar │ │ ├── index.html │ │ └── style.css │ ├── Pulse-Animated-Search-Bar │ │ ├── index.html │ │ └── style.css │ ├── Simple-Search-Bar │ │ ├── index.html │ │ └── style.css │ └── Voice-Command-Search-Bar │ │ ├── assets │ │ └── background.gif │ │ ├── index.html │ │ ├── script.js │ │ └── style.css ├── Tables │ ├── Bending-Sheet-Table │ │ ├── index.html │ │ └── style.css │ ├── Expandable-Row-Table │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Interactive-Flip-Table │ │ ├── index.html │ │ └── style.css │ └── Pop-Up-Table │ │ ├── index.html │ │ └── style.css ├── Text-Animations │ ├── 3D-Cylindrically-Rotating-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── 3D-Revolving-List-Text-Animation │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── 3D-Rotating-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Bouncing-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Bubbles-Text-Animation │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Color-Cycle-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Distortion-Text-Animation │ │ ├── asset │ │ │ └── vid.mp4 │ │ ├── index.html │ │ └── style.css │ ├── Expandable-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Flip-Text-Animation-2 │ │ ├── index.html │ │ └── style.css │ ├── Flip-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Fog-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Frozen-Text-Animation │ │ ├── assets │ │ │ ├── background.jpg │ │ │ └── ice.jpg │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Ghost-Text-Animation │ │ ├── assets │ │ │ └── background.png │ │ ├── index.html │ │ └── style.css │ ├── Glowing-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Hovering-Spaced-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Neon-Spectrum-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Shaking-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Shuffle-Text-Animation │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Sliding-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Spotlight-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Typewriter-Text-Animation-2 │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Typewriter-Text-Animation-3 │ │ ├── index.html │ │ └── style.css │ ├── Typewriter-Text-Animation │ │ ├── index.html │ │ └── style.css │ ├── Water-Text-Animation │ │ ├── assets │ │ │ └── image.jpg │ │ ├── index.html │ │ └── style.css │ ├── Wave-Text-Animation │ │ ├── index.html │ │ └── style.css │ └── Zooming-Text-Animation │ │ ├── index.html │ │ └── style.css ├── Toggle-Switches │ ├── Basketball-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Beer-Pong-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Dark-Mode-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Dog-Animation-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Gravity-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Light-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Minimalist-Dark-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Neumorphism-Toggle-Switch │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── On-Off-Toggle-Switch-2 │ │ ├── index.html │ │ └── style.css │ ├── On-Off-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Pancake-Stack-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Robo-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Simple-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Sun-Moon-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ ├── Transparent-Toggle-Switch │ │ ├── index.html │ │ └── style.css │ └── Yes-No-Toggle-Switch │ │ ├── index.html │ │ └── style.css ├── Tooltips │ ├── Animated-Socials-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Animated-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Customizable-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Email-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Gradient-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Help-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Instructions-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Linked-Apps-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Mario-Themed-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Shopping-Cart-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── Show-Counts-Tooltip │ │ ├── index.html │ │ └── style.css │ ├── User-Profile-Tooltip │ │ ├── index.html │ │ └── style.css │ └── Website-Check-Prompt-Tooltip │ │ ├── index.html │ │ └── style.css └── Transfer-Lists │ ├── Card-Based-Transfer-List │ ├── index.html │ ├── script.js │ └── style.css │ ├── Menu-Transfer-List │ ├── index.html │ ├── script.js │ └── style.css │ └── Neumorphism-Transfer-List │ ├── index.html │ ├── script.js │ └── style.css ├── LICENSE ├── README.md ├── _redirects ├── assets ├── css_files │ ├── about.css │ ├── commonstyle.css │ ├── contact.css │ ├── contributor.css │ ├── cursor.css │ ├── faq.css │ ├── progressbar.css │ └── search.css ├── html_files │ ├── about.html │ ├── accordions.html │ ├── backgrounds.html │ ├── breadcrumbs.html │ ├── buttons.html │ ├── cards.html │ ├── carousels.html │ ├── contact.html │ ├── contributor.html │ ├── cursors.html │ ├── dropdowns.html │ ├── error-pages.html │ ├── faq.html │ ├── footers.html │ ├── forms.html │ ├── heroes.html │ ├── loaders.html │ ├── navigation-bars.html │ ├── popups.html │ ├── scrollbars.html │ ├── search-bars.html │ ├── tables.html │ ├── text-animations.html │ ├── toggle-switches.html │ ├── tooltips.html │ └── transfer-lists.html ├── images │ ├── 404.gif │ ├── about.png │ ├── avatar.svg │ ├── bg1.png │ ├── bg2.png │ ├── bg3.png │ ├── cardbg1.jpg │ ├── cardbg2.jpg │ ├── dark.png │ ├── dbg.jpg │ ├── faq.png │ ├── favicon.png │ ├── github.png │ ├── light.png │ ├── link.png │ ├── logo.png │ ├── navbar.png │ ├── no-results.png │ └── theme-mode.png ├── js_files │ ├── commonscript.js │ ├── contributor.js │ ├── cursor.js │ ├── faq.js │ └── search.js └── json_files │ ├── accordions.json │ ├── backgrounds.json │ ├── breadcrumbs.json │ ├── buttons.json │ ├── cards.json │ ├── carousels.json │ ├── cursors.json │ ├── dropdowns.json │ ├── error-pages.json │ ├── footers.json │ ├── forms.json │ ├── heroes.json │ ├── loaders.json │ ├── navigation-bars.json │ ├── popups.json │ ├── scrollbars.json │ ├── search-bars.json │ ├── tables.json │ ├── text-animations.json │ ├── toggle-switches.json │ ├── tooltips.json │ └── transfer-lists.json ├── components.json ├── index.html ├── netlify └── functions │ └── contributors.js ├── package.json ├── script.js └── style.css /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/CONTRIBUTING_GUIDELINES.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/ISSUE_TEMPLATE/doc_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/ISSUE_TEMPLATE/other.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/ISSUE_TEMPLATE/style.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/issue-close-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/workflows/issue-close-comment.yml -------------------------------------------------------------------------------- /.github/workflows/pr-merge-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.github/workflows/pr-merge-comment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/404.html -------------------------------------------------------------------------------- /Components/Accordions/3D-Accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/3D-Accordion/index.html -------------------------------------------------------------------------------- /Components/Accordions/3D-Accordion/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/3D-Accordion/script.js -------------------------------------------------------------------------------- /Components/Accordions/3D-Accordion/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/3D-Accordion/style.css -------------------------------------------------------------------------------- /Components/Accordions/Card-Styled-Accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Card-Styled-Accordion/index.html -------------------------------------------------------------------------------- /Components/Accordions/Card-Styled-Accordion/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Card-Styled-Accordion/script.js -------------------------------------------------------------------------------- /Components/Accordions/Card-Styled-Accordion/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Card-Styled-Accordion/style.css -------------------------------------------------------------------------------- /Components/Accordions/Glassmorphism-Accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Glassmorphism-Accordion/index.html -------------------------------------------------------------------------------- /Components/Accordions/Glassmorphism-Accordion/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Glassmorphism-Accordion/script.js -------------------------------------------------------------------------------- /Components/Accordions/Glassmorphism-Accordion/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Glassmorphism-Accordion/style.css -------------------------------------------------------------------------------- /Components/Accordions/Modern-Accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Modern-Accordion/index.html -------------------------------------------------------------------------------- /Components/Accordions/Modern-Accordion/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Modern-Accordion/script.js -------------------------------------------------------------------------------- /Components/Accordions/Modern-Accordion/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Modern-Accordion/style.css -------------------------------------------------------------------------------- /Components/Accordions/Neumorphism-Accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Neumorphism-Accordion/index.html -------------------------------------------------------------------------------- /Components/Accordions/Neumorphism-Accordion/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Neumorphism-Accordion/style.css -------------------------------------------------------------------------------- /Components/Accordions/Simple-Accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Simple-Accordion/index.html -------------------------------------------------------------------------------- /Components/Accordions/Simple-Accordion/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Simple-Accordion/style.css -------------------------------------------------------------------------------- /Components/Accordions/Tilted-Accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Tilted-Accordion/index.html -------------------------------------------------------------------------------- /Components/Accordions/Tilted-Accordion/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Accordions/Tilted-Accordion/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/3D-Boxes-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/3D-Boxes-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/3D-Boxes-Background/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/3D-Boxes-Background/script.js -------------------------------------------------------------------------------- /Components/Backgrounds/3D-Boxes-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/3D-Boxes-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Abstract-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Abstract-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Abstract-Background/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Abstract-Background/script.js -------------------------------------------------------------------------------- /Components/Backgrounds/Abstract-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Abstract-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Colour-Drop-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Colour-Drop-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Colour-Drop-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Colour-Drop-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Dot-Wave-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Dot-Wave-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Dot-Wave-Background/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Dot-Wave-Background/script.js -------------------------------------------------------------------------------- /Components/Backgrounds/Dot-Wave-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Dot-Wave-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Falling-Leaf-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Falling-Leaf-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Neumorphism-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Neumorphism-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Neumorphism-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Neumorphism-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Outer-Space-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Outer-Space-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Outer-Space-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Outer-Space-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Parallax-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Parallax-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Parallax-Background/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Parallax-Background/script.js -------------------------------------------------------------------------------- /Components/Backgrounds/Parallax-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Parallax-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Pipeline-Animation-Background/js/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Components/Backgrounds/Screensaver-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Screensaver-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Screensaver-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Screensaver-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Smoke-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Smoke-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Smoke-Background/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Smoke-Background/script.js -------------------------------------------------------------------------------- /Components/Backgrounds/Smoke-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Smoke-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Snowball-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Snowball-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Snowball-Background/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Snowball-Background/script.js -------------------------------------------------------------------------------- /Components/Backgrounds/Snowball-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Snowball-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Waves-Background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Waves-Background/index.html -------------------------------------------------------------------------------- /Components/Backgrounds/Waves-Background/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Waves-Background/style.css -------------------------------------------------------------------------------- /Components/Backgrounds/Waves-Background/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Backgrounds/Waves-Background/wave.png -------------------------------------------------------------------------------- /Components/Breadcrumbs/3D-Animated-Breadcrumb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/3D-Animated-Breadcrumb/index.html -------------------------------------------------------------------------------- /Components/Breadcrumbs/3D-Animated-Breadcrumb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/3D-Animated-Breadcrumb/style.css -------------------------------------------------------------------------------- /Components/Breadcrumbs/3D-Breadcrumb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/3D-Breadcrumb/index.html -------------------------------------------------------------------------------- /Components/Breadcrumbs/3D-Breadcrumb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/3D-Breadcrumb/style.css -------------------------------------------------------------------------------- /Components/Breadcrumbs/Animated-Breadcrumb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Animated-Breadcrumb/index.html -------------------------------------------------------------------------------- /Components/Breadcrumbs/Animated-Breadcrumb/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Animated-Breadcrumb/script.js -------------------------------------------------------------------------------- /Components/Breadcrumbs/Animated-Breadcrumb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Animated-Breadcrumb/style.css -------------------------------------------------------------------------------- /Components/Breadcrumbs/Chevron-Breadcrumb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Chevron-Breadcrumb/index.html -------------------------------------------------------------------------------- /Components/Breadcrumbs/Chevron-Breadcrumb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Chevron-Breadcrumb/style.css -------------------------------------------------------------------------------- /Components/Breadcrumbs/Colored-Breadcrumb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Colored-Breadcrumb/index.html -------------------------------------------------------------------------------- /Components/Breadcrumbs/Colored-Breadcrumb/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Colored-Breadcrumb/script.js -------------------------------------------------------------------------------- /Components/Breadcrumbs/Colored-Breadcrumb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Colored-Breadcrumb/style.css -------------------------------------------------------------------------------- /Components/Breadcrumbs/Gaming-Breadcrumb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Gaming-Breadcrumb/index.html -------------------------------------------------------------------------------- /Components/Breadcrumbs/Gaming-Breadcrumb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Gaming-Breadcrumb/style.css -------------------------------------------------------------------------------- /Components/Breadcrumbs/Navigator-Breadcrumb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Navigator-Breadcrumb/index.html -------------------------------------------------------------------------------- /Components/Breadcrumbs/Navigator-Breadcrumb/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Navigator-Breadcrumb/script.js -------------------------------------------------------------------------------- /Components/Breadcrumbs/Navigator-Breadcrumb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Navigator-Breadcrumb/style.css -------------------------------------------------------------------------------- /Components/Breadcrumbs/Tilted-Breadcrumb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Tilted-Breadcrumb/index.html -------------------------------------------------------------------------------- /Components/Breadcrumbs/Tilted-Breadcrumb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Breadcrumbs/Tilted-Breadcrumb/style.css -------------------------------------------------------------------------------- /Components/Buttons/3D-Button-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/3D-Button-2/index.html -------------------------------------------------------------------------------- /Components/Buttons/3D-Button-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/3D-Button-2/style.css -------------------------------------------------------------------------------- /Components/Buttons/3D-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/3D-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/3D-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/3D-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Arrow-Hover-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Arrow-Hover-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Arrow-Hover-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Arrow-Hover-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Bat-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Bat-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Bat-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Bat-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Blob-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Blob-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Blob-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Blob-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Bookmark-Effect-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Bookmark-Effect-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Bookmark-Effect-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Bookmark-Effect-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Celebration-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Celebration-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Celebration-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Celebration-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Celebration-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Celebration-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Confetti-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Confetti-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Confetti-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Confetti-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Confetti-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Confetti-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Delete-Animation-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Delete-Animation-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Delete-Animation-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Delete-Animation-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Download-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Download-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Download-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Download-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Download-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Download-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Dynamic-Hover-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Dynamic-Hover-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Dynamic-Hover-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Dynamic-Hover-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Fizzy-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Fizzy-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Fizzy-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Fizzy-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Fizzy-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Fizzy-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Flipside-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Flipside-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Flipside-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Flipside-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Flipside-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Flipside-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Floating-Action-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Floating-Action-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Floating-Action-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Floating-Action-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Floating-Action-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Floating-Action-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Flower-Effect-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Flower-Effect-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Flower-Effect-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Flower-Effect-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Gaming-Theme-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Gaming-Theme-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Gaming-Theme-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Gaming-Theme-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Glassmorphism-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Glassmorphism-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Glassmorphism-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Glassmorphism-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Glitch-Effect-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Glitch-Effect-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Glitch-Effect-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Glitch-Effect-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Glow-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Glow-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Glow-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Glow-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Glow-Up-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Glow-Up-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Glow-Up-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Glow-Up-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Go-Back-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Go-Back-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Go-Back-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Go-Back-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Gradient-Border-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Gradient-Border-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Gradient-Border-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Gradient-Border-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Gradient-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Gradient-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Gradient-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Gradient-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Hover-Animation-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Hover-Animation-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Hover-Animation-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Hover-Animation-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Hover-Button/assets/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Hover-Button/assets/background.jpeg -------------------------------------------------------------------------------- /Components/Buttons/Hover-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Hover-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Hover-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Hover-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Impossible-Toggle-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Impossible-Toggle-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Impossible-Toggle-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Impossible-Toggle-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Impossible-Toggle-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Impossible-Toggle-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Invisible-Hover-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Invisible-Hover-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Invisible-Hover-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Invisible-Hover-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Jelly-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Jelly-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Jelly-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Jelly-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Jelly-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Jelly-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Keyboard-Effect-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Keyboard-Effect-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Keyboard-Effect-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Keyboard-Effect-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Like-Effect-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Like-Effect-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Like-Effect-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Like-Effect-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Liquid-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Liquid-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Liquid-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Liquid-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Liquid-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Liquid-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Mask-Hover-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Mask-Hover-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Mask-Hover-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Mask-Hover-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Minecraft-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Minecraft-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Minecraft-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Minecraft-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Morphing-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Morphing-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Morphing-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Morphing-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Morphing-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Morphing-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Nature-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Nature-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Nature-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Nature-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Naughty-Submit-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Naughty-Submit-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Naughty-Submit-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Naughty-Submit-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Naughty-Submit-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Naughty-Submit-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Neon-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Neon-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Neon-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Neon-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Neumorphism-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Neumorphism-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Neumorphism-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Neumorphism-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Perspective-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Perspective-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Perspective-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Perspective-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Play-Now-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Play-Now-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Play-Now-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Play-Now-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Pulsing-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Pulsing-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Pulsing-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Pulsing-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Push-Upward-Hover-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Push-Upward-Hover-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Rainbow-Animation-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Rainbow-Animation-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Send-Message-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Send-Message-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Send-Message-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Send-Message-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Skeuomorphism-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Skeuomorphism-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Skeuomorphism-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Skeuomorphism-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Social-Hover-Tone-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Social-Hover-Tone-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Swipe-Right-Button-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Swipe-Right-Button-2/index.html -------------------------------------------------------------------------------- /Components/Buttons/Swipe-Right-Button-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Swipe-Right-Button-2/style.css -------------------------------------------------------------------------------- /Components/Buttons/Swipe-Right-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Swipe-Right-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Swipe-Right-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Swipe-Right-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Teddy-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Teddy-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Teddy-Button/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Teddy-Button/script.js -------------------------------------------------------------------------------- /Components/Buttons/Teddy-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Teddy-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Thin-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Thin-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Thin-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Thin-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Wiggle-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Wiggle-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Wiggle-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Wiggle-Button/style.css -------------------------------------------------------------------------------- /Components/Buttons/Youtube-Button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Youtube-Button/index.html -------------------------------------------------------------------------------- /Components/Buttons/Youtube-Button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Buttons/Youtube-Button/style.css -------------------------------------------------------------------------------- /Components/Cards/3D-Animated-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/3D-Animated-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/3D-Animated-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/3D-Animated-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/3D-Popup-Card/assets/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/3D-Popup-Card/assets/image.jpg -------------------------------------------------------------------------------- /Components/Cards/3D-Popup-Card/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/3D-Popup-Card/assets/image2.png -------------------------------------------------------------------------------- /Components/Cards/3D-Popup-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/3D-Popup-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/3D-Popup-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/3D-Popup-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/404-Error-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/404-Error-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/404-Error-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/404-Error-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Animated-Product-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Animated-Product-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Animated-Product-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Animated-Product-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Attractive-Social-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Attractive-Social-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Attractive-Social-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Attractive-Social-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image1.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image2.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image3.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image4.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image5.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image6.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image7.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image8.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/image9.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/user1.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/user2.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/images/user3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/images/user3.jpg -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Blog-Post-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Blog-Post-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Book-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Book-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Book-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Book-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Code-Snippet-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Code-Snippet-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Code-Snippet-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Code-Snippet-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Color-Palette-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Color-Palette-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Color-Palette-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Color-Palette-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Drag-&-Drop-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Drag-&-Drop-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Drag-&-Drop-Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Drag-&-Drop-Card/script.js -------------------------------------------------------------------------------- /Components/Cards/Drag-&-Drop-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Drag-&-Drop-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Draggable-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Draggable-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Draggable-Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Draggable-Card/script.js -------------------------------------------------------------------------------- /Components/Cards/Draggable-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Draggable-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Flip-Card/background-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Flip-Card/background-image.jpg -------------------------------------------------------------------------------- /Components/Cards/Flip-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Flip-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Flip-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Flip-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Glassmorphism-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Glassmorphism-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Glassmorphism-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Glassmorphism-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Gradient-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Gradient-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Gradient-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Gradient-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Greeting-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Greeting-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Greeting-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Greeting-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Individual-Focus-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Individual-Focus-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Individual-Focus-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Individual-Focus-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Lineup-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Lineup-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Lineup-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Lineup-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Mouse-Tracker-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Mouse-Tracker-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Mouse-Tracker-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Mouse-Tracker-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Neumorphism-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Neumorphism-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Neumorphism-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Neumorphism-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Port-ID-Card/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Port-ID-Card/assets/background.jpg -------------------------------------------------------------------------------- /Components/Cards/Port-ID-Card/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Port-ID-Card/assets/image.png -------------------------------------------------------------------------------- /Components/Cards/Port-ID-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Port-ID-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Port-ID-Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Port-ID-Card/script.js -------------------------------------------------------------------------------- /Components/Cards/Port-ID-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Port-ID-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Premium-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Premium-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Premium-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Premium-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Product-Card/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Product-Card/assets/background.png -------------------------------------------------------------------------------- /Components/Cards/Product-Card/assets/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Product-Card/assets/laptop.jpg -------------------------------------------------------------------------------- /Components/Cards/Product-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Product-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Product-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Product-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Product-Preview-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Product-Preview-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Product-Preview-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Product-Preview-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Profile-Card/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Profile-Card/assets/background.jpg -------------------------------------------------------------------------------- /Components/Cards/Profile-Card/assets/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Profile-Card/assets/profile.jpg -------------------------------------------------------------------------------- /Components/Cards/Profile-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Profile-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Profile-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Profile-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Quotes-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Quotes-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Quotes-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Quotes-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Slider-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Slider-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Slider-Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Slider-Card/script.js -------------------------------------------------------------------------------- /Components/Cards/Slider-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Slider-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Sliding-Sticky-Notes-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Sliding-Sticky-Notes-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Sliding-Sticky-Notes-Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Sliding-Sticky-Notes-Card/script.js -------------------------------------------------------------------------------- /Components/Cards/Sliding-Sticky-Notes-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Sliding-Sticky-Notes-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Testimonial-Card/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Testimonial-Card/assets/avatar.png -------------------------------------------------------------------------------- /Components/Cards/Testimonial-Card/assets/mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Testimonial-Card/assets/mountain.jpg -------------------------------------------------------------------------------- /Components/Cards/Testimonial-Card/assets/quotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Testimonial-Card/assets/quotes.png -------------------------------------------------------------------------------- /Components/Cards/Testimonial-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Testimonial-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Testimonial-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Testimonial-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/Timeline-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Timeline-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/Timeline-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/Timeline-Card/style.css -------------------------------------------------------------------------------- /Components/Cards/User-Attention-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/User-Attention-Card/index.html -------------------------------------------------------------------------------- /Components/Cards/User-Attention-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cards/User-Attention-Card/style.css -------------------------------------------------------------------------------- /Components/Carousels/3D-Card-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/3D-Card-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/3D-Card-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/3D-Card-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/3D-Image-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/3D-Image-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/3D-Image-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/3D-Image-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Animated-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Animated-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Animated-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Animated-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Apple-Themed-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Apple-Themed-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Apple-Themed-Carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Apple-Themed-Carousel/script.js -------------------------------------------------------------------------------- /Components/Carousels/Apple-Themed-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Apple-Themed-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Bootstrap-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Bootstrap-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Bootstrap-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Bootstrap-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Circular-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Circular-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Circular-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Circular-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/1.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/10.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/2.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/3.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/4.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/5.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/6.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/7.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/8.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/images/9.jpg -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/script.js -------------------------------------------------------------------------------- /Components/Carousels/Draggable-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Draggable-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Image-Carousel/images/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Image-Carousel/images/img-1.jpg -------------------------------------------------------------------------------- /Components/Carousels/Image-Carousel/images/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Image-Carousel/images/img-2.jpg -------------------------------------------------------------------------------- /Components/Carousels/Image-Carousel/images/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Image-Carousel/images/img-3.jpg -------------------------------------------------------------------------------- /Components/Carousels/Image-Carousel/images/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Image-Carousel/images/img-4.jpg -------------------------------------------------------------------------------- /Components/Carousels/Image-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Image-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Image-Carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Image-Carousel/script.js -------------------------------------------------------------------------------- /Components/Carousels/Image-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Image-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Infinite-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Infinite-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Infinite-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Infinite-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Neumorphism-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Neumorphism-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Neumorphism-Carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Neumorphism-Carousel/script.js -------------------------------------------------------------------------------- /Components/Carousels/Neumorphism-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Neumorphism-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Playlist-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Playlist-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Playlist-Carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Playlist-Carousel/script.js -------------------------------------------------------------------------------- /Components/Carousels/Playlist-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Playlist-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Revolving-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Revolving-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Revolving-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Revolving-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Simple-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Simple-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Simple-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Simple-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Strip-Carousel/images/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Strip-Carousel/images/img-1.jpg -------------------------------------------------------------------------------- /Components/Carousels/Strip-Carousel/images/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Strip-Carousel/images/img-2.jpg -------------------------------------------------------------------------------- /Components/Carousels/Strip-Carousel/images/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Strip-Carousel/images/img-3.jpg -------------------------------------------------------------------------------- /Components/Carousels/Strip-Carousel/images/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Strip-Carousel/images/img-4.jpg -------------------------------------------------------------------------------- /Components/Carousels/Strip-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Strip-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Strip-Carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Strip-Carousel/script.js -------------------------------------------------------------------------------- /Components/Carousels/Strip-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Strip-Carousel/style.css -------------------------------------------------------------------------------- /Components/Carousels/Touch-Slider-Carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Touch-Slider-Carousel/index.html -------------------------------------------------------------------------------- /Components/Carousels/Touch-Slider-Carousel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Touch-Slider-Carousel/script.js -------------------------------------------------------------------------------- /Components/Carousels/Touch-Slider-Carousel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Carousels/Touch-Slider-Carousel/style.css -------------------------------------------------------------------------------- /Components/Cursors/Cultural-Cursor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Cultural-Cursor/index.html -------------------------------------------------------------------------------- /Components/Cursors/Cultural-Cursor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Cultural-Cursor/script.js -------------------------------------------------------------------------------- /Components/Cursors/Cultural-Cursor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Cultural-Cursor/style.css -------------------------------------------------------------------------------- /Components/Cursors/Difference-Dot-Cursor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Difference-Dot-Cursor/index.html -------------------------------------------------------------------------------- /Components/Cursors/Difference-Dot-Cursor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Difference-Dot-Cursor/script.js -------------------------------------------------------------------------------- /Components/Cursors/Difference-Dot-Cursor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Difference-Dot-Cursor/style.css -------------------------------------------------------------------------------- /Components/Cursors/Dot-Cursor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Dot-Cursor/index.html -------------------------------------------------------------------------------- /Components/Cursors/Dot-Cursor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Dot-Cursor/script.js -------------------------------------------------------------------------------- /Components/Cursors/Dot-Cursor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Dot-Cursor/style.css -------------------------------------------------------------------------------- /Components/Cursors/Follow-Along-Cursor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Follow-Along-Cursor/index.html -------------------------------------------------------------------------------- /Components/Cursors/Follow-Along-Cursor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Follow-Along-Cursor/script.js -------------------------------------------------------------------------------- /Components/Cursors/Follow-Along-Cursor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Follow-Along-Cursor/style.css -------------------------------------------------------------------------------- /Components/Cursors/Pulsating-Cursor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Pulsating-Cursor/index.html -------------------------------------------------------------------------------- /Components/Cursors/Pulsating-Cursor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Pulsating-Cursor/script.js -------------------------------------------------------------------------------- /Components/Cursors/Pulsating-Cursor/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Cursors/Pulsating-Cursor/style.css -------------------------------------------------------------------------------- /Components/Dropdowns/Apple-Themed-Dropdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/Apple-Themed-Dropdown/index.html -------------------------------------------------------------------------------- /Components/Dropdowns/Apple-Themed-Dropdown/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/Apple-Themed-Dropdown/script.js -------------------------------------------------------------------------------- /Components/Dropdowns/Apple-Themed-Dropdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/Apple-Themed-Dropdown/style.css -------------------------------------------------------------------------------- /Components/Dropdowns/Multilevel-Dropdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/Multilevel-Dropdown/index.html -------------------------------------------------------------------------------- /Components/Dropdowns/Multilevel-Dropdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/Multilevel-Dropdown/style.css -------------------------------------------------------------------------------- /Components/Dropdowns/The-More-Menu-Dropdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/The-More-Menu-Dropdown/style.css -------------------------------------------------------------------------------- /Components/Dropdowns/Theme-Toggle-Dropdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/Theme-Toggle-Dropdown/index.html -------------------------------------------------------------------------------- /Components/Dropdowns/Theme-Toggle-Dropdown/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/Theme-Toggle-Dropdown/script.js -------------------------------------------------------------------------------- /Components/Dropdowns/Theme-Toggle-Dropdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Dropdowns/Theme-Toggle-Dropdown/style.css -------------------------------------------------------------------------------- /Components/Error-Pages/404-Error-Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Error-Pages/404-Error-Page/index.html -------------------------------------------------------------------------------- /Components/Error-Pages/404-Error-Page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Error-Pages/404-Error-Page/style.css -------------------------------------------------------------------------------- /Components/Error-Pages/Neon-Error-Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Error-Pages/Neon-Error-Page/index.html -------------------------------------------------------------------------------- /Components/Error-Pages/Neon-Error-Page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Error-Pages/Neon-Error-Page/style.css -------------------------------------------------------------------------------- /Components/Error-Pages/Neon-Glow-Error-Page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Error-Pages/Neon-Glow-Error-Page/style.css -------------------------------------------------------------------------------- /Components/Footers/Animated-Footer/assets/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Animated-Footer/assets/image.jpeg -------------------------------------------------------------------------------- /Components/Footers/Animated-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Animated-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Animated-Footer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Animated-Footer/script.js -------------------------------------------------------------------------------- /Components/Footers/Animated-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Animated-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Animated-Stylish-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Animated-Stylish-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Animated-Stylish-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Animated-Stylish-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Classic-Footer/assets/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Classic-Footer/assets/discord.png -------------------------------------------------------------------------------- /Components/Footers/Classic-Footer/assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Classic-Footer/assets/github.png -------------------------------------------------------------------------------- /Components/Footers/Classic-Footer/assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Classic-Footer/assets/linkedin.png -------------------------------------------------------------------------------- /Components/Footers/Classic-Footer/assets/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Classic-Footer/assets/twitter.png -------------------------------------------------------------------------------- /Components/Footers/Classic-Footer/assets/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Classic-Footer/assets/youtube.png -------------------------------------------------------------------------------- /Components/Footers/Classic-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Classic-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Classic-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Classic-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Glassmorphism-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Glassmorphism-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Glassmorphism-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Glassmorphism-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Interactive-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Interactive-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Interactive-Footer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Interactive-Footer/script.js -------------------------------------------------------------------------------- /Components/Footers/Interactive-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Interactive-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Minimalist-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Minimalist-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Minimalist-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Minimalist-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Parallax-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Parallax-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Parallax-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Parallax-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Simple-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Simple-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Simple-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Simple-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Split-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Split-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Split-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Split-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Sticky-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Sticky-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Sticky-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Sticky-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Subscription-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Subscription-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Subscription-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Subscription-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Waves-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Waves-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Waves-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Waves-Footer/style.css -------------------------------------------------------------------------------- /Components/Footers/Wavy-Footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Wavy-Footer/index.html -------------------------------------------------------------------------------- /Components/Footers/Wavy-Footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Footers/Wavy-Footer/style.css -------------------------------------------------------------------------------- /Components/Forms/All-In-One-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/All-In-One-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/All-In-One-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/All-In-One-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Animated-Border-Login-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-Border-Login-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Animated-Login-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-Login-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Animated-Login-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-Login-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Animated-Login-Signup-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-Login-Signup-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Animated-Login-Signup-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-Login-Signup-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Animated-Progressive-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-Progressive-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Animated-Progressive-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-Progressive-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Animated-SignIn-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-SignIn-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Animated-SignIn-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Animated-SignIn-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Application-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Application-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Application-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Application-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Black-Red-Signup-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Black-Red-Signup-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Black-Red-Signup-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Black-Red-Signup-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Cart-Checkout-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Cart-Checkout-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Cart-Checkout-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Cart-Checkout-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Contact-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Contact-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Contact-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Contact-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Customer-Complaint-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Customer-Complaint-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Customer-Complaint-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Customer-Complaint-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Customer-Complaint-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Customer-Complaint-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Drag-And-Drop-Form/icons/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Drag-And-Drop-Form/icons/cloud.png -------------------------------------------------------------------------------- /Components/Forms/Drag-And-Drop-Form/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Drag-And-Drop-Form/icons/image.png -------------------------------------------------------------------------------- /Components/Forms/Drag-And-Drop-Form/icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Drag-And-Drop-Form/icons/pdf.png -------------------------------------------------------------------------------- /Components/Forms/Drag-And-Drop-Form/icons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Drag-And-Drop-Form/icons/video.png -------------------------------------------------------------------------------- /Components/Forms/Drag-And-Drop-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Drag-And-Drop-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Drag-And-Drop-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Drag-And-Drop-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Drag-And-Drop-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Drag-And-Drop-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Event-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Event-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Event-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Event-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Feedback-Form-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Feedback-Form-2/index.html -------------------------------------------------------------------------------- /Components/Forms/Feedback-Form-2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Feedback-Form-2/script.js -------------------------------------------------------------------------------- /Components/Forms/Feedback-Form-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Feedback-Form-2/style.css -------------------------------------------------------------------------------- /Components/Forms/Feedback-Form/assets/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Feedback-Form/assets/background.jpeg -------------------------------------------------------------------------------- /Components/Forms/Feedback-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Feedback-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Feedback-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Feedback-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/File-Upload-Form-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/File-Upload-Form-2/index.html -------------------------------------------------------------------------------- /Components/Forms/File-Upload-Form-2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/File-Upload-Form-2/style.css -------------------------------------------------------------------------------- /Components/Forms/File-Upload-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/File-Upload-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/File-Upload-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/File-Upload-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/File-Upload-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/File-Upload-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Game-Signup-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Game-Signup-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Game-Signup-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Game-Signup-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Glassmorphism-Login-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Glassmorphism-Login-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Glassmorphism-Login-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Glassmorphism-Login-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Hacker-Login-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Hacker-Login-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Hacker-Login-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Hacker-Login-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Hotel-Reservation-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Hotel-Reservation-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Hotel-Reservation-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Hotel-Reservation-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Hotel-Reservation-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Hotel-Reservation-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Login-Form/assets/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Login-Form/assets/image.jpg -------------------------------------------------------------------------------- /Components/Forms/Login-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Login-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Login-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Login-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Medical-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Medical-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Medical-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Medical-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Medical-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Medical-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Neon-SignUp-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Neon-SignUp-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Neon-SignUp-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Neon-SignUp-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Neumorphism-Form/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Neumorphism-Form/assets/image.png -------------------------------------------------------------------------------- /Components/Forms/Neumorphism-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Neumorphism-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Neumorphism-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Neumorphism-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/OTP-Verification-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/OTP-Verification-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/OTP-Verification-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/OTP-Verification-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/OTP-Verification-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/OTP-Verification-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Order-Cancellation-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Order-Cancellation-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Order-Cancellation-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Order-Cancellation-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Order-Cancellation-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Order-Cancellation-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Payment-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Payment-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Payment-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Payment-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Portfolio-Contact-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Portfolio-Contact-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Portfolio-Contact-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Portfolio-Contact-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/QR-Code-Generator-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/QR-Code-Generator-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/QR-Code-Generator-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/QR-Code-Generator-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/QR-Code-Generator-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/QR-Code-Generator-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Registration-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Registration-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Registration-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Registration-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Reset-Password-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Reset-Password-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Reset-Password-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Reset-Password-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Reset-Password-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Reset-Password-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Sign-Up-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Sign-Up-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Sign-Up-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Sign-Up-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Sign-Up-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Sign-Up-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Slide-Login-Register-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Slide-Login-Register-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Slide-Login-Register-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Slide-Login-Register-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Slide-Login-Register-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Slide-Login-Register-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Survey-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Survey-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Survey-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Survey-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Survey-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Survey-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Swag-Shipment-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Swag-Shipment-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Swag-Shipment-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Swag-Shipment-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Swag-Shipment-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Swag-Shipment-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Terms-And-Conditions-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Terms-And-Conditions-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Terms-And-Conditions-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Terms-And-Conditions-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Terms-And-Conditions-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Terms-And-Conditions-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Text-To-Voice-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Text-To-Voice-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Text-To-Voice-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Text-To-Voice-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Text-To-Voice-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Text-To-Voice-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Torch-Effect-Login-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Torch-Effect-Login-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Torch-Effect-Login-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Torch-Effect-Login-Form/style.css -------------------------------------------------------------------------------- /Components/Forms/Yeti-Login-Form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Yeti-Login-Form/index.html -------------------------------------------------------------------------------- /Components/Forms/Yeti-Login-Form/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Yeti-Login-Form/script.js -------------------------------------------------------------------------------- /Components/Forms/Yeti-Login-Form/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Forms/Yeti-Login-Form/style.css -------------------------------------------------------------------------------- /Components/Heroes/Carousel-Hero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Carousel-Hero/index.html -------------------------------------------------------------------------------- /Components/Heroes/Carousel-Hero/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Carousel-Hero/script.js -------------------------------------------------------------------------------- /Components/Heroes/Carousel-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Carousel-Hero/style.css -------------------------------------------------------------------------------- /Components/Heroes/Collage-Style-Hero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Collage-Style-Hero/index.html -------------------------------------------------------------------------------- /Components/Heroes/Collage-Style-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Collage-Style-Hero/style.css -------------------------------------------------------------------------------- /Components/Heroes/Full-Screen-Image-Hero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Full-Screen-Image-Hero/index.html -------------------------------------------------------------------------------- /Components/Heroes/Full-Screen-Image-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Full-Screen-Image-Hero/style.css -------------------------------------------------------------------------------- /Components/Heroes/Full-Screen-Video-Hero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Full-Screen-Video-Hero/index.html -------------------------------------------------------------------------------- /Components/Heroes/Full-Screen-Video-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Full-Screen-Video-Hero/style.css -------------------------------------------------------------------------------- /Components/Heroes/Interactive-Particle-Hero/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Interactive-Particle-Hero/script.js -------------------------------------------------------------------------------- /Components/Heroes/Interactive-Particle-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Interactive-Particle-Hero/style.css -------------------------------------------------------------------------------- /Components/Heroes/Neon-Glow-Hero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Neon-Glow-Hero/index.html -------------------------------------------------------------------------------- /Components/Heroes/Neon-Glow-Hero/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Neon-Glow-Hero/script.js -------------------------------------------------------------------------------- /Components/Heroes/Neon-Glow-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Neon-Glow-Hero/style.css -------------------------------------------------------------------------------- /Components/Heroes/Split-Screen-Hero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Split-Screen-Hero/index.html -------------------------------------------------------------------------------- /Components/Heroes/Split-Screen-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Split-Screen-Hero/style.css -------------------------------------------------------------------------------- /Components/Heroes/Spooky-Themed-Hero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Spooky-Themed-Hero/index.html -------------------------------------------------------------------------------- /Components/Heroes/Spooky-Themed-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Spooky-Themed-Hero/style.css -------------------------------------------------------------------------------- /Components/Heroes/Text-Only-Hero/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Text-Only-Hero/index.html -------------------------------------------------------------------------------- /Components/Heroes/Text-Only-Hero/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Heroes/Text-Only-Hero/style.css -------------------------------------------------------------------------------- /Components/Loaders/3D-Cube-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/3D-Cube-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/3D-Cube-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/3D-Cube-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Alexa-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Alexa-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Alexa-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Alexa-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Animated-Progress-Loader/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Animated-Progress-Loader/script.js -------------------------------------------------------------------------------- /Components/Loaders/Animated-Progress-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Animated-Progress-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Bar-Fill-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bar-Fill-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Bar-Fill-Loader/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bar-Fill-Loader/script.js -------------------------------------------------------------------------------- /Components/Loaders/Bar-Fill-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bar-Fill-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Bike-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bike-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Bike-Loader/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bike-Loader/script.js -------------------------------------------------------------------------------- /Components/Loaders/Bike-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bike-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Bird-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bird-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Bird-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bird-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Book-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Book-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Book-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Book-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Bouncing-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bouncing-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Bouncing-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Bouncing-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Box-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Box-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Box-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Box-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Clock-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Clock-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Clock-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Clock-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Colour-Changing-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Colour-Changing-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Colour-Changing-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Colour-Changing-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Crazy-Arch-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Crazy-Arch-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Crazy-Arch-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Crazy-Arch-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Cuboid-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Cuboid-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Cuboid-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Cuboid-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Cup-Loader/assets/liquid.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Cup-Loader/assets/liquid.jpeg -------------------------------------------------------------------------------- /Components/Loaders/Cup-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Cup-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Cup-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Cup-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Dice-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Dice-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Dice-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Dice-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Flipping-Text-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Flipping-Text-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Flipping-Text-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Flipping-Text-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Frosted-Glass-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Frosted-Glass-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Frosted-Glass-Loader/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Frosted-Glass-Loader/script.js -------------------------------------------------------------------------------- /Components/Loaders/Frosted-Glass-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Frosted-Glass-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Gear-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Gear-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Gear-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Gear-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Glassmorphism-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Glassmorphism-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Glassmorphism-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Glassmorphism-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Heart-Beat-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Heart-Beat-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Heart-Beat-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Heart-Beat-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Helix-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Helix-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Helix-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Helix-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Hexagonal-Ripple-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Hexagonal-Ripple-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Hexagonal-Ripple-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Hexagonal-Ripple-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Hourglass-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Hourglass-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Hourglass-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Hourglass-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Infinity-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Infinity-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Infinity-Loader/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Infinity-Loader/script.js -------------------------------------------------------------------------------- /Components/Loaders/Infinity-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Infinity-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Maze-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Maze-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Maze-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Maze-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Mesmerizing-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Mesmerizing-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Mesmerizing-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Mesmerizing-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Mouse-On-Wheel-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Mouse-On-Wheel-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Mouse-On-Wheel-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Mouse-On-Wheel-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Newton-Cradle-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Newton-Cradle-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Newton-Cradle-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Newton-Cradle-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Pan-Flip-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Pan-Flip-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Pan-Flip-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Pan-Flip-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Pendulum-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Pendulum-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Pendulum-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Pendulum-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Polygon-Loader/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Polygon-Loader/css/demo.css -------------------------------------------------------------------------------- /Components/Loaders/Polygon-Loader/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Polygon-Loader/css/normalize.css -------------------------------------------------------------------------------- /Components/Loaders/Polygon-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Polygon-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Polygon-Loader/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Polygon-Loader/script.js -------------------------------------------------------------------------------- /Components/Loaders/Progress-Text-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Progress-Text-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Progress-Text-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Progress-Text-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Reveal-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Reveal-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Reveal-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Reveal-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Rotating-Circle-Loader/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Rotating-Circle-Loader/image.jpg -------------------------------------------------------------------------------- /Components/Loaders/Rotating-Circle-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Rotating-Circle-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Rotating-Circle-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Rotating-Circle-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Rotating-Squares-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Rotating-Squares-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Rotating-Squares-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Rotating-Squares-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Round-Squares-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Round-Squares-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Round-Squares-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Round-Squares-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Spinning-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Spinning-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Spinning-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Spinning-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Square-Grid-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Square-Grid-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Square-Grid-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Square-Grid-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Square-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Square-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Square-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Square-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Squid-Game-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Squid-Game-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Squid-Game-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Squid-Game-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Terminal-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Terminal-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Terminal-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Terminal-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Triangle-Loader/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Triangle-Loader/css/demo.css -------------------------------------------------------------------------------- /Components/Loaders/Triangle-Loader/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Triangle-Loader/css/normalize.css -------------------------------------------------------------------------------- /Components/Loaders/Triangle-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Triangle-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Triangle-Loader/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Triangle-Loader/script.js -------------------------------------------------------------------------------- /Components/Loaders/Truck-Delivery-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Truck-Delivery-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Truck-Delivery-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Truck-Delivery-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Typewriter-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Typewriter-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Typewriter-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Typewriter-Loader/style.css -------------------------------------------------------------------------------- /Components/Loaders/Wifi-Loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Wifi-Loader/index.html -------------------------------------------------------------------------------- /Components/Loaders/Wifi-Loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Loaders/Wifi-Loader/style.css -------------------------------------------------------------------------------- /Components/Popups/Confirmation-Dialog-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Confirmation-Dialog-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Confirmation-Dialog-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Confirmation-Dialog-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Context-Menu-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Context-Menu-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Context-Menu-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Context-Menu-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Context-Menu-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Context-Menu-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Cookie-Consent-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Cookie-Consent-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Cookie-Consent-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Cookie-Consent-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Cookie-Consent-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Cookie-Consent-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Error-Notification-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Error-Notification-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Error-Notification-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Error-Notification-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Error-Notification-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Error-Notification-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Login-Register-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Login-Register-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Login-Register-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Login-Register-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Login-Register-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Login-Register-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Sidebar-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Sidebar-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Sidebar-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Sidebar-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Sidebar-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Sidebar-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Slide-Reveal-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Slide-Reveal-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Slide-Reveal-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Slide-Reveal-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Slide-Reveal-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Slide-Reveal-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Subscribe-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Subscribe-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Subscribe-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Subscribe-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Subscribe-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Subscribe-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Toast-Message-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Toast-Message-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Toast-Message-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Toast-Message-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Toast-Message-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Toast-Message-Popup/style.css -------------------------------------------------------------------------------- /Components/Popups/Welcome-Offer-Popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Welcome-Offer-Popup/index.html -------------------------------------------------------------------------------- /Components/Popups/Welcome-Offer-Popup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Welcome-Offer-Popup/script.js -------------------------------------------------------------------------------- /Components/Popups/Welcome-Offer-Popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Popups/Welcome-Offer-Popup/style.css -------------------------------------------------------------------------------- /Components/Scrollbars/Rainbow-Scrollbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Scrollbars/Rainbow-Scrollbar/index.html -------------------------------------------------------------------------------- /Components/Scrollbars/Rainbow-Scrollbar/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Scrollbars/Rainbow-Scrollbar/script.js -------------------------------------------------------------------------------- /Components/Scrollbars/Rainbow-Scrollbar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Scrollbars/Rainbow-Scrollbar/style.css -------------------------------------------------------------------------------- /Components/Search-Bars/3D-Search-Bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Search-Bars/3D-Search-Bar/index.html -------------------------------------------------------------------------------- /Components/Search-Bars/3D-Search-Bar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Search-Bars/3D-Search-Bar/style.css -------------------------------------------------------------------------------- /Components/Search-Bars/Google-Search-Bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Search-Bars/Google-Search-Bar/index.html -------------------------------------------------------------------------------- /Components/Search-Bars/Google-Search-Bar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Search-Bars/Google-Search-Bar/style.css -------------------------------------------------------------------------------- /Components/Search-Bars/Operating-Search-Bar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Search-Bars/Operating-Search-Bar/style.css -------------------------------------------------------------------------------- /Components/Search-Bars/Simple-Search-Bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Search-Bars/Simple-Search-Bar/index.html -------------------------------------------------------------------------------- /Components/Search-Bars/Simple-Search-Bar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Search-Bars/Simple-Search-Bar/style.css -------------------------------------------------------------------------------- /Components/Tables/Bending-Sheet-Table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Bending-Sheet-Table/index.html -------------------------------------------------------------------------------- /Components/Tables/Bending-Sheet-Table/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Bending-Sheet-Table/style.css -------------------------------------------------------------------------------- /Components/Tables/Expandable-Row-Table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Expandable-Row-Table/index.html -------------------------------------------------------------------------------- /Components/Tables/Expandable-Row-Table/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Expandable-Row-Table/script.js -------------------------------------------------------------------------------- /Components/Tables/Expandable-Row-Table/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Expandable-Row-Table/style.css -------------------------------------------------------------------------------- /Components/Tables/Interactive-Flip-Table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Interactive-Flip-Table/index.html -------------------------------------------------------------------------------- /Components/Tables/Interactive-Flip-Table/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Interactive-Flip-Table/style.css -------------------------------------------------------------------------------- /Components/Tables/Pop-Up-Table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Pop-Up-Table/index.html -------------------------------------------------------------------------------- /Components/Tables/Pop-Up-Table/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tables/Pop-Up-Table/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Animated-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Animated-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Animated-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Animated-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Customizable-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Customizable-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Customizable-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Customizable-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Email-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Email-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Email-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Email-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Gradient-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Gradient-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Gradient-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Gradient-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Help-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Help-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Help-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Help-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Instructions-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Instructions-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Instructions-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Instructions-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Linked-Apps-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Linked-Apps-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Linked-Apps-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Linked-Apps-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Mario-Themed-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Mario-Themed-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Mario-Themed-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Mario-Themed-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Shopping-Cart-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Shopping-Cart-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Shopping-Cart-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Shopping-Cart-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/Show-Counts-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Show-Counts-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/Show-Counts-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/Show-Counts-Tooltip/style.css -------------------------------------------------------------------------------- /Components/Tooltips/User-Profile-Tooltip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/User-Profile-Tooltip/index.html -------------------------------------------------------------------------------- /Components/Tooltips/User-Profile-Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/Components/Tooltips/User-Profile-Tooltip/style.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | /* /404.html 404 -------------------------------------------------------------------------------- /assets/css_files/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/css_files/about.css -------------------------------------------------------------------------------- /assets/css_files/commonstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/css_files/commonstyle.css -------------------------------------------------------------------------------- /assets/css_files/contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/css_files/contact.css -------------------------------------------------------------------------------- /assets/css_files/contributor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/css_files/contributor.css -------------------------------------------------------------------------------- /assets/css_files/cursor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/css_files/cursor.css -------------------------------------------------------------------------------- /assets/css_files/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/css_files/faq.css -------------------------------------------------------------------------------- /assets/css_files/progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/css_files/progressbar.css -------------------------------------------------------------------------------- /assets/css_files/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/css_files/search.css -------------------------------------------------------------------------------- /assets/html_files/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/about.html -------------------------------------------------------------------------------- /assets/html_files/accordions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/accordions.html -------------------------------------------------------------------------------- /assets/html_files/backgrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/backgrounds.html -------------------------------------------------------------------------------- /assets/html_files/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/breadcrumbs.html -------------------------------------------------------------------------------- /assets/html_files/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/buttons.html -------------------------------------------------------------------------------- /assets/html_files/cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/cards.html -------------------------------------------------------------------------------- /assets/html_files/carousels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/carousels.html -------------------------------------------------------------------------------- /assets/html_files/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/contact.html -------------------------------------------------------------------------------- /assets/html_files/contributor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/contributor.html -------------------------------------------------------------------------------- /assets/html_files/cursors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/cursors.html -------------------------------------------------------------------------------- /assets/html_files/dropdowns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/dropdowns.html -------------------------------------------------------------------------------- /assets/html_files/error-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/error-pages.html -------------------------------------------------------------------------------- /assets/html_files/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/faq.html -------------------------------------------------------------------------------- /assets/html_files/footers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/footers.html -------------------------------------------------------------------------------- /assets/html_files/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/forms.html -------------------------------------------------------------------------------- /assets/html_files/heroes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/heroes.html -------------------------------------------------------------------------------- /assets/html_files/loaders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/loaders.html -------------------------------------------------------------------------------- /assets/html_files/navigation-bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/navigation-bars.html -------------------------------------------------------------------------------- /assets/html_files/popups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/popups.html -------------------------------------------------------------------------------- /assets/html_files/scrollbars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/scrollbars.html -------------------------------------------------------------------------------- /assets/html_files/search-bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/search-bars.html -------------------------------------------------------------------------------- /assets/html_files/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/tables.html -------------------------------------------------------------------------------- /assets/html_files/text-animations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/text-animations.html -------------------------------------------------------------------------------- /assets/html_files/toggle-switches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/toggle-switches.html -------------------------------------------------------------------------------- /assets/html_files/tooltips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/tooltips.html -------------------------------------------------------------------------------- /assets/html_files/transfer-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/html_files/transfer-lists.html -------------------------------------------------------------------------------- /assets/images/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/404.gif -------------------------------------------------------------------------------- /assets/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/about.png -------------------------------------------------------------------------------- /assets/images/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/avatar.svg -------------------------------------------------------------------------------- /assets/images/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/bg1.png -------------------------------------------------------------------------------- /assets/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/bg2.png -------------------------------------------------------------------------------- /assets/images/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/bg3.png -------------------------------------------------------------------------------- /assets/images/cardbg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/cardbg1.jpg -------------------------------------------------------------------------------- /assets/images/cardbg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/cardbg2.jpg -------------------------------------------------------------------------------- /assets/images/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/dark.png -------------------------------------------------------------------------------- /assets/images/dbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/dbg.jpg -------------------------------------------------------------------------------- /assets/images/faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/faq.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/github.png -------------------------------------------------------------------------------- /assets/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/light.png -------------------------------------------------------------------------------- /assets/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/link.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/navbar.png -------------------------------------------------------------------------------- /assets/images/no-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/no-results.png -------------------------------------------------------------------------------- /assets/images/theme-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/images/theme-mode.png -------------------------------------------------------------------------------- /assets/js_files/commonscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/js_files/commonscript.js -------------------------------------------------------------------------------- /assets/js_files/contributor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/js_files/contributor.js -------------------------------------------------------------------------------- /assets/js_files/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/js_files/cursor.js -------------------------------------------------------------------------------- /assets/js_files/faq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/js_files/faq.js -------------------------------------------------------------------------------- /assets/js_files/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/js_files/search.js -------------------------------------------------------------------------------- /assets/json_files/accordions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/accordions.json -------------------------------------------------------------------------------- /assets/json_files/backgrounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/backgrounds.json -------------------------------------------------------------------------------- /assets/json_files/breadcrumbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/breadcrumbs.json -------------------------------------------------------------------------------- /assets/json_files/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/buttons.json -------------------------------------------------------------------------------- /assets/json_files/cards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/cards.json -------------------------------------------------------------------------------- /assets/json_files/carousels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/carousels.json -------------------------------------------------------------------------------- /assets/json_files/cursors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/cursors.json -------------------------------------------------------------------------------- /assets/json_files/dropdowns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/dropdowns.json -------------------------------------------------------------------------------- /assets/json_files/error-pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/error-pages.json -------------------------------------------------------------------------------- /assets/json_files/footers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/footers.json -------------------------------------------------------------------------------- /assets/json_files/forms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/forms.json -------------------------------------------------------------------------------- /assets/json_files/heroes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/heroes.json -------------------------------------------------------------------------------- /assets/json_files/loaders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/loaders.json -------------------------------------------------------------------------------- /assets/json_files/navigation-bars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/navigation-bars.json -------------------------------------------------------------------------------- /assets/json_files/popups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/popups.json -------------------------------------------------------------------------------- /assets/json_files/scrollbars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/scrollbars.json -------------------------------------------------------------------------------- /assets/json_files/search-bars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/search-bars.json -------------------------------------------------------------------------------- /assets/json_files/tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/tables.json -------------------------------------------------------------------------------- /assets/json_files/text-animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/text-animations.json -------------------------------------------------------------------------------- /assets/json_files/toggle-switches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/toggle-switches.json -------------------------------------------------------------------------------- /assets/json_files/tooltips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/tooltips.json -------------------------------------------------------------------------------- /assets/json_files/transfer-lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/assets/json_files/transfer-lists.json -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/components.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/index.html -------------------------------------------------------------------------------- /netlify/functions/contributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/netlify/functions/contributors.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/package.json -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rakesh9100/Beautiify/HEAD/style.css --------------------------------------------------------------------------------