├── .gitattributes ├── LICENSE.txt ├── NOTICE.txt ├── header_image.png └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2020 Manish Parui 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /header_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manishparui/design-resources-for-developers/ae0bf8e58faf0b1959c82dc5c3d712a0e45d3232/header_image.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ![Repository Banner](header_image.png) 2 | #### Please read [`contributing guidelines`](./contributing.md) before submitting new resources. 3 | 4 | ## Table of Contents 5 | 6 | - [UI Graphics](#ui-graphics) 7 | - [Fonts](#fonts) 8 | - [Colors](#colors) 9 | - [Icons](#icons) 10 | - [Favicons](#favicons) 11 | - [Icon Fonts](#icon-fonts) 12 | - [Stock Photos](#stock-photos) 13 | - [Stock Videos](#stock-videos) 14 | - [Stock Music & Sound Effects](#stock-music--sound-effects) 15 | - [Vectors & Clipart](#vectors--clip-art) 16 | - [Product & Image Mockups](#product--image-mockups) 17 | - [HTML & CSS Templates](#html--css-templates) 18 | - [CSS Frameworks](#css-frameworks) 19 | - [CSS Animations](#css-Animations) 20 | - [Javascript Animations](#javascript-animation-libraries) 21 | - [UI Components & Kits](#ui-components--kits) 22 | - [React UI Libraries](#react-ui) 23 | - [Vue UI Libraries](#vue-ui) 24 | - [Angular UI Libraries](#angular-ui) 25 | - [Svelte UI Libraries](#svelte-ui) 26 | - [Design Systems & Style Guides](#design-systems--style-guides) 27 | - [Online Design Tools](#online-design-tools) 28 | - [Downloadable Design Software](#downloadable-design-software) 29 | - [Design Inspiration](#Design-inspiration) 30 | - [Image Compression](#Image-compression) 31 | - [Others](#others) 32 | 33 | ## UI Graphics 34 | 35 | >Websites and resources with modern UI components in different formats such as PSD, Sketch, Figma, etc. They are great for ideas for web components/UI 36 | 37 | | Website                            | Description | 38 | | -------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ | 39 | | [UI Design Daily](https://uidesigndaily.com/) | Awesome UI Components of all types | 40 | | [100 Daily UI](https://100dailyui.webflow.io/) | Free Figma library of products, elements, and screens | 41 | | [Sketch App Sources](https://www.sketchappsources.com/) | Sketch UIs, wireframes, icons and much more | 42 | | [Humaaans](https://www.humaaans.com/) | Cool illustrations of people with the ability to mix and match | 43 | | [Paaatterns](https://products.ls.graphics/paaatterns/) | Free collection of beautiful patterns for all vector formats | 44 | | [thepatternlibrary](http://thepatternlibrary.com/) | Free beautiful background patterns | 45 | | [404 illustration](https://error404.fun/) | free illustrations for 404 pages | 46 | | [Drawkit.io](https://www.drawkit.io/) | Illustrations for designers and startups | 47 | | [Undraw.co](https://undraw.co/) | Open-source illustrations for any idea you can imagine and create | 48 | | [Illustration.co](https://illlustrations.co/) | Open-source illustrations kit | 49 | | [Manypixels.co](https://www.manypixels.co/gallery/) | Monochromatic, Isometric high quality illustrations | 50 | | [Opendoodles](https://www.opendoodles.com/) | Free sketchy illustrations | 51 | | [Open Peeps](https://www.openpeeps.com/) | Hand drawn illustration library | 52 | | [UI Space](https://uispace.net/) | Thousands of great UI freebies | 53 | | [Animations.co](http://animaticons.co/) | Beautiful, customizable animated GIF icons | 54 | | [Uplabs](https://www.uplabs.com/) | High-quality design resources (Free & Premium) | 55 | | [InvisionApp](https://www.invisionapp.com/inside-design/design-resources/) | Library of free, high-quality UI kits, icon packs, and mockups | 56 | | [Open Doodles](https://www.opendoodles.com/) | A Free Set of Sketchy Illustrations | 57 | | [Avataaars](https://avataaars.com/) | Free sketch library of avatars illustrations by Pablo Stanley | 58 | | [FreebieSketch](https://freebiesketch.com/) | Free Sketch designs, wireframes, illustrations, and more. | 59 | | [Blush](https://blush.design/) | Free customizable illustrations with Figma Plugin | 60 | | [Hero Patterns](http://www.heropatterns.com/) | A collection of repeatable SVG background patterns | 61 | | [IRA Design](https://iradesign.io/) | An open-source gradient illustrations collection by creative tim. | 62 | | [Storytale.io](https://storytale.io/freebies/) | Subset of Storytale free quality illustrations | 63 | 64 |
65 | ↥ Back To Top 66 |
67 | 68 | ## Fonts 69 | 70 | >Websites that offer free fonts as well as font based tools 71 | 72 | | Website                            | Description | 73 | | ----------------------- | ------------------ | 74 | | [Google Fonts](https://fonts.google.com/)| Library of around 1000 free licensed font families | 75 | | [DaFont](https://www.dafont.com/)| Archive of freely downloadable fonts | 76 | | [Use & Modify](https://usemodify.com/)| Personal selection of beautiful, classy, punk, professional, incomplete, weird typefaces | 77 | | [1001 Free Fonts](https://www.1001freefonts.com/)| I think the name speaks for itself :smirk: | 78 | | [Font Squirrel](https://www.fontsquirrel.com/)| Font Squirrel scours the internet for high quality, legitimately free fonts | 79 | | [Font Fabric](https://www.fontfabric.com/free-fonts/)| A digital type foundry crafting retail fonts and custom typography for various brands | 80 | | [What Font](http://www.chengyinliu.com/whatfont.html)| Tool for finding the fonts of a website without having to search in the devtools | 81 | | [Tiff](https://tiff.herokuapp.com/)| A type diff tool that visually contrasts the differences between two fonts | 82 | | [Font Flame](http://app.fontflame.com/)| Tool for pairing fonts to see how they look together | 83 | | [TypeKit Practice](https://practice.typekit.com/)| Learn about typography practices | 84 | | [Fontjoy](https://fontjoy.com/)| Generate font pairing in one click | 85 | | [Golden Ratio](https://grtcalculator.com/)| Golden Ratio Typography Calculator | 86 | | [FontSpark](https://fontspark.app/) | Discover Better Fonts | 87 | | [FontPair](https://fontpair.co/) | Helps you pair Google Fonts together 88 | | [Font Space](https://www.fontspace.com/)| A designer-centered free font website that has quick customizable previews | 89 | | [Abstract Fonts](http://www.abstractfonts.com/)| Fonts free for personal and commercial use | 90 | | [Free Typography](https://freetypography.com/)| A list of high quality fonts | 91 | | [Leon Sans](https://github.com/cmiscm/leonsans/)| A geometric sans-serif typeface made with code | 92 | | [Lexend](https://www.lexend.com/)| A variable font empirically shown to significantly improve reading-proficiency | 93 | | [Fonts for Apple Platforms](https://developer.apple.com/fonts/)| Get the details, frameworks, and tools you need to use system fonts for Apple platforms in your apps | 94 | | [SFWin](https://github.com/blaisck/sfwin/)| San Francisco Fonts for Windows 10 and non-Apple Platform | 95 | | [Font Flipper](https://fontflipper.com/)| Preview 800+ Google Fonts on top of your own designs, without having to download the fonts | 96 | | [Fonts Arena](https://fontsarena.com/) | Free curated fonts | 97 | | [Befonts](https://befonts.com/) | High quality fonts for free | 98 | | [Arabic fonts](https://arabicfonts.net/) | Arabic fonts for free | 99 | | [FontDrop](https://fontdrop.info) | Simple and easy way to view the contents of font files | 100 | | [Open Foundry](https://open-foundry.com) | FREE platform for curated open-source typefaces | 101 | | [Glyphter](https://glyphter.com) | Upload your own SVGS and turn them into font files. Usefull if you want a smaller library loaded | 102 | 103 |
104 | ↥ Back To Top 105 |
106 | 107 | ## Colors 108 | 109 | >Websites and resources that help with choices related to colors 110 | 111 | | Website                            | Description | 112 | | ----------------------- | ------------------ | 113 | | [Colormind.io](http://colormind.io)| Color palette generator | 114 | | [ColorCurves.app](https://colorcurves.app)| Color palette generator that uses curves to generate color palettes | 115 | | [Coolors](https://coolors.co)| Create the perfect palette or get inspired by thousands of beautiful color schemes | 116 | | [HTML Color Codes](https://htmlcolorcodes.com/)| Get HTML color codes, Hex color codes, RGB and HSL values with our color picker, color chart and HTML color names | 117 | | [Colors & Fonts](https://www.colorsandfonts.com/)| A curated library of colors, fonts and resources | 118 | | [Palette List](https://www.palettelist.com/)| Pick 2 colors you like and the tool generates thousands of palettes for you. | 119 | | [Google Material Color Tool](https://material.io/resources/color/)| Official Google Material Color Palette Tool| 120 | | [Material Palette](https://www.materialpalette.com/)| Free to pick palettes, icons and colors for Material Design| 121 | | [ColorSpace](https://mycolor.space/)| Generate nice color palettes from one color | 122 | | [FlatUIColors](https://flatuicolors.com)| Beautiful set of color palettes in various flavours | 123 | | [Adobe Color](https://color.adobe.com/create)| Create color palettes, extract gradients from images, etc | 124 | | [Colorsinspo](https://colorsinspo.com/) | All-in-one resource for finding everything about colors | 125 | | [Happyhues](https://www.happyhues.co/) | Happy Hues is a color palette inspiration site that acts as a real world example as to how the colors could be used in your design projects by Mackenzie Child | 126 | | [Adobe Trends](https://color.adobe.com/trends)| Discover current color trends in different industries from the creative communities on Behance and Adobe Stock| 127 | | [Color Hunt](https://colorhunt.co/)| A free and open platform for color inspiration with thousands of trendy hand-picked color palettes | 128 | | [Gradient Hunt](https://gradienthunt.com/)| A free and open platform for gradient inspiration with thousands of trendy hand-picked color gradients | 129 | | [Web Gradients](https://webgradients.com/)| A free website to find good css gradients | 130 | | [ColorBox](https://www.colorbox.io)| A free website to produce color set | 131 | | [CSS gradient](https://cssgradient.io/)| A free website to make custome gradient and some examples of gradient | 132 | | [gradienta](https://gradienta.io/)| A pure css and jpg gradients | 133 | | [UI Gradients](https://uigradients.com/)| UI gradients color generator | 134 | | [Palette Generator](https://palettegenerator.colorion.co/)| Generate new color palette with every spacebar press | 135 | | [Material Palettes](https://material.colorion.co/)| 1000+ Material Design palettes | 136 | | [Grabient](https://www.grabient.com/) | Gradient Selector | 137 | | [ShadeSwash](https://shadeswash.netlify.app/) | Quickly generate shades of any color | 138 | | [BrandColors](http://brandcolors.net/) | The biggest collection of official brand color codes | 139 | | [BRAND PALETTES](https://brandpalettes.com/) | Logo Color Codes and Palettes | 140 | | [ColorSpace](https://mycolor.space/) | Generate color palettes from one color | 141 | | [Material Design Palette Generator](http://mcg.mbitson.com) | Generate theme and color palette Material Design-like | 142 | | [Colorate](https://colorate.azurewebsites.net/) | Color scheme tool for designers and developers. This will help you draw inspiration and serve as a resource for your color work. | 143 | | [0to255](https://www.0to255.com/) | A color tool that makes it easy to lighten and darken colors. It’s perfect for hover states, borders, gradients, and more. | 144 | | [Gradient Buttons](https://gradientbuttons.colorion.co/) | Ready to use copy/paste gradient buttons | 145 | | [Khroma](http://khroma.co/) | Khroma uses AI to learn which colors you like and creates limitless palettes for you to discover, search, and save. | 146 | | [whocanuse](https://whocanuse.com) | A tool that brings attention and understanding to how color contrast can affect different people with visual impairments. 147 | | [Colorable](https://colorable.jxnblk.com/) | Color combination contrast tester | 148 | | [Color Hex Picker](https://colorhexpicker.com) | Tool to get hex code along with name of the color. | 149 | | [Saruwakakun](https://saruwakakun.com/en/color-ideas) | The stunning color scheme for website & App Designs with previews | 150 | | [Paletton](https://paletton.com/)| Paletton.com is a designer color tool designed for creating color combinations that work together well.| 151 | | [Colorzilla](https://www.colorzilla.com/) | A powerful online photoShop-like CSS gradient editor | 152 | | [Image Color Picker](https://image-color.com/) | Image color picker and palette generator | 153 | | [CombineCOLORS](https://combinecolors.com/) | Color mixing tool | 154 | | [Color Lovers](https://www.colourlovers.com/palettes) | it will show the color schemes which are popular in outside world 155 | | [HTML CSS Color](https://www.htmlcsscolor.com/) | Free online Color (USA) or Colour (British) tools: information, gradient generator, color wheels etc. 156 | | [HEX Color Codes](https://hexcolorcodes.org/) | It gets HTML color codes, Hex color codes, RGB and HSL values with our color picker, color chart and HTML color names. 157 | 158 |
159 | ↥ Back To Top 160 |
161 | 162 | ## Icons 163 | 164 | >Resources for Icons including png, svg and more 165 | 166 | | Website                            | Description | 167 | | ----------------------- | ------------------ | 168 | | [UXWing](https://uxwing.com/)| Well Optimized, Free icons for commercial use | 169 | | [Shapedfonts Iconclub](https://shapedfonts.com/iconclub/)| 8000+ free icons | 170 | | [Feather Icons](https://feathericons.com/)| Beautiful, customizable open source icons | 171 | | [Tabler Icons](https://tablericons.com/)| 470+ highly customizable open source SVG icons | 172 | | [Simple Icons](https://simpleicons.org/)| 1307 Free SVG icons for popular brands | 173 | | [Instant Logo Search](http://instantlogosearch.com/)| thousands of free brands logos ( SVG - PNG ) | 174 | | [Linear Icons](https://linearicons.com/free)| 1000+ Ultra crisp vector icons | 175 | | [Entypo](http://www.entypo.com/)| 411 carefully crafted premium pictograms by Daniel Bruce | 176 | | [Icons8](https://icons8.com/)| Free icons, photos, vectors and tools | 177 | | [Flat Icon](https://www.flaticon.com/)| The largest database of free icons in PNG, SVG, EPS, PSD and BASE 64 formats | 178 | | [The Noun Project](https://thenounproject.com/)| Over 2 Million curated icons, created by a global community | 179 | | [Iconscout](https://iconscout.com/)| Free Download Icons illustrations stock photos at one place | 180 | | [Nucleo App](https://nucleoapp.com/)| Nucleo is a beautiful library of 27500 icons, and a powerful application to collect, customize and export all your icons. (Free & Paid) | 181 | | [Icon-icons.com](https://icon-icons.com/)| Free Icons PNG, ICO, ICNS and Vector file SVG | 182 | | [Bootstrap Icons](https://icons.getbootstrap.com/)| Free Icons built for Bootstrap but they'll work in any project | 183 | | [Remix Icon](https://remixicon.com/)| Simply Delightful Icon System | 184 | | [Iconmonstr](https://iconmonstr.com/) | Discover 4496+ free icons in 313 collections | 185 | | [Vivid.js](https://webkul.github.io/vivid/)| Ready to use Free and Open Source SVG Icons Pack JavaScript Library. | 186 | | [Iconfinder](https://www.iconfinder.com/)| Free and premium vector icons in SVG, PNG, CSH and AI format | 187 | | [Lordicon](https://lordicon.com/free-icons) | 50 free animated interactive icons | 188 | | [UseAnimations](https://useanimations.com/) | Free Animated Icons in SVG and Json Format(for lottie) | 189 | | [css.gg](https://css.gg/) | 700+ Open-source CSS, SVG and Figma UI Icons Available in SVG Sprite, styled-components, NPM & API | 190 | | [SVGPorn](https://svgporn.com) | 1000+ high-quality SVG logos | 191 | | [Payment System Logos](https://github.com/mpay24/payment-logos/) | Logos for payment systems available in png and svg | 192 | | [Browser Logos](https://github.com/alrra/browser-logos/) | High resolution web browser logos | 193 | | [IconBros](https://www.iconbros.com) | 7843+ free icons grouped in 182 collections | 194 | | [LogoHub](https://logohub.io/) | Generate and download your logo for free in PNG and SVG format | 195 | | [Material Design Icons](https://materialdesignicons.com/) | A icon collection allowing designers and developers targeting various platforms to download icons in the format, color and size they need for any project. | 196 | | [Heroicons](https://heroicons.dev/) | Free, open source icons from the creators of Tailwind CSS. | 197 | | [Zondicons](https://www.zondicons.com/icons.html) | A set of free premium SVG icons for you to use on your digital products. | 198 | | [Endless Icons](http://endlessicons.com/) | A website offering a number of free icons. Icons are tagged and also compressed into kits. | 199 | | [Icomoon](https://icomoon.io/app/) |Browse 5500+ Free Icons. Add any set you wish to easily browse and search its icons. | 200 | | [Eva Icons](https://akveo.github.io/eva-icons/#/) |Eva Icons is a pack of more than 480 beautifully crafted Open Source icons for common actions and items. | 201 | | [Zondicons](http://www.zondicons.com/) | A set of free premium SVG icons for you to use on your digital products. you can download the icons into your desktop | 202 | | [Entypo](http://www.entypo.com/) | 411 carefully crafted premium pictograms | 203 | | [Cryptoicons](http://cryptoicons.co/) | A set of 430 crypto and fiat currency icons. Completely free. | 204 | | [Ikonate](https://ikonate.com/) | Fully customisable & accessible vector icons | 205 | | [appicon](https://appicon.co/)| Quickly generate app icons in diffrent sizes for your IOS, macOS and Android projects| 206 | | [LineIcons](https://lineicons.com) | 2000+ Essential Line Icons for Designers and Developers | 207 | | [Evericons](https://www.figma.com/resources/assets/evericons-for-figma/) | Evericons is a big pack of over 460 free icons designed by Aleksey Popov. | 208 | | [SVG Repo](https://www.svgrepo.com/) | Download free SVG Vectors for commercial use. | 209 | | [Convertio](https://convertio.co/png-svg/) | Convert PNG files to SVG online & free. (One of the services provided by it.) | 210 | 211 |
212 | ↥ Back To Top 213 |
214 | 215 | ## Favicons 216 | 217 | >Resources for Favicons 218 | 219 | | Website                            | Description | 220 | | ----------------------- | ------------------ | 221 | | [Favicon.io](https://favicon.io/)| Generate a favicon from text, from an image, or from an emoji. Download in .ico and .png formats | 222 | | [Favicon Generator](http://tools.dynamicdrive.com/favicon/)| Generate favicon ico files for your website | 223 | | [RealFaviconGenerator](https://realfavicongenerator.net/)| Generate icons for all platforms (Windows, iOS, Android) | 224 | | [FontIcon](https://gauger.io/fonticon/)| Generate favicons and images from Font Awesome icons | 225 | 226 |
227 | ↥ Back To Top 228 |
229 | 230 | ## Icon Fonts 231 | 232 | >Resources for Icon Fonts 233 | 234 | | Website                            | Description | 235 | | ----------------------- | ------------------ | 236 | | [Font Awesome](https://fontawesome.com/)| The web's most popular icon set and toolkit | 237 | | [Line Awesome](https://icons8.com/line-awesome)| Swap in replacement of Font Awesome with modern line icons | 238 | | [Material Icons](https://material.io/resources/icons/)| Material design icon library | 239 | | [IonIcons](http://ionicons.com/)| Beautifully crafted open source icons from Ionic team | 240 | | [Zurb Foundation Icons](https://zurb.com/playground/foundation-icon-fonts-3)| Customizable Foundation icons | 241 | | [Fontisto Icons](https://fontisto.com/)| Fontisto the iconic font and css toolkit · 616+ free icons | 242 | | [Boxicons](https://boxicons.com/)| Boxicons is a free collection of carefully crafted open source icons | 243 | | [Icofont](https://icofont.com/)| 2100+ free icons to spice up your creative designs | 244 | | [Material Palette](https://www.materialpalette.com/icons)| Free to pick palettes, icons and colors for Material Design]| 245 | | [Material Design Iconic Font](http://zavoloklom.github.io/material-design-iconic-font/index.html) | Material design icon font | 246 | | [Vscode Codicons](https://microsoft.github.io/vscode-codicons/dist/codicon.html) | The icon font from Visual Studio Code | 247 | | [Devicon](https://konpa.github.io/devicon/) | Devicon is a set of icons representing programming languages, designing & development tools | 248 | | [PaymentFont](https://paymentfont.com/) | A sleek webfont for payment operators and methods. Featuring 116 icons | 249 | | [Weather Icons](https://erikflowers.github.io/weather-icons/) | Weather Icons is the only icon font with 222 weather themed icons | 250 | | [Stroke 7](https://themes-pixeden.com/font-demos/7-stroke/index.html) | 202 thin stroke icons inspired by iOS 7 | 251 | | [Jam Icons](https://jam-icons.com/) | 890+ handcrafted icons to make your web app awesome | 252 | | [Fontastic.me](http://fontastic.me/) | Create your custom icon fonts in seconds. Over 9,000 icons available to pick from or upload your custom svg | 253 | | [Fontello](http://fontello.com/)| 200+ web icons where you can customize the names or codes of icons. | 254 | | [Linea](https://linea.io/)| Linea: Featuring 750+ Free Icons | 255 | 256 |
257 | ↥ Back To Top 258 |
259 | 260 | ## Stock Photos 261 | 262 | >Websites that offer free stock photos of all kinds for your websites and apps 263 | 264 | | Website                            | Description | 265 | | ----------------------- | ------------------ | 266 | | [Pexels](https://www.pexels.com/)| Free stock photos shared by talented creators | 267 | | [Unsplash](https://unsplash.com/)| The internet’s source of freely usable images 268 | | [Pixabay](https://pixabay.com/)| Over 1.7 million+ high quality stock images and videos | 269 | | [Magdeleine](https://magdeleine.co/)| Gallery & free high res photo everyday | 270 | | [Picspree](https://picspree.com)| Royalty free images, stock photos, illustrations, and vectors | 271 | | [Burst](https://burst.shopify.com/)| Free stock photos collections | 272 | | [Gratisography](https://gratisography.com/)| Free collection of free high-resolution pictures | 273 | | [Life of Pix](https://www.lifeofpix.com/)| Free high resolution photography | 274 | | [Stock Snap](https://stocksnap.io/)| Hundreds of high quality photos added weekly | 275 | | [Morguefile](https://morguefile.com/)| Over 350,000 free stock photos for commercial use | 276 | | [Kaboom Pics](https://kaboompics.com/)| Stock photography and color palettes. Good for product images | 277 | | [New Old Stock](https://nos.twnsnd.co/)| Stock vintage photos | 278 | | [Pic Jumbo](https://picjumbo.com/)| Good collections of different types of photos | 279 | | [Public Domain Pictures](https://www.publicdomainpictures.net/en/)| Public domain images of all types | 280 | | [Find A Photo](https://www.chamberofcommerce.org/findaphoto/)| Searches multiple stock photo websites | 281 | | [Stockvault](http://www.stockvault.net/)| Categorized stock photos | 282 | | [Placeholder](https://placeholder.com/)| A free image placeholder service for the web. You can specify image size and format | 283 | | [Realistic Shots](https://realisticshots.com/)| Free high resolution stock photos | 284 | | [Negative Space](https://negativespace.co/)| High-Resolution Free Stock Photos | 285 | | [SkitterPhoto](https://skitterphoto.com/)| Free high resolution photography | 286 | | [PicoGraphy](https://picography.co/)| Gorgeous, High-Resolution, Free Photos | 287 | | [Wunder Stock](https://wunderstock.com/)| Stunningly amazing free photos | 288 | | [PxHere](https://pxhere.com/)| Free Images & Free stock photos - PxHere | 289 | | [Piqsels](https://piqsels.com/)| Royalty Free Stock Photos | 290 | | [FoodiesFeed](https://www.foodiesfeed.com/)| Food photo stock | 291 | | [Nappy](https://www.nappy.co/)| A website offering Beautiful, high-res photos of black and brown people.| 292 | | [Generated Photos](https://generated.photos/)| Unique AI Generated model photos| 293 |
294 | ↥ Back To Top 295 |
296 | 297 | ## Stock Videos 298 | 299 | >Websites that offer free stock videos of all kinds for your websites and apps 300 | 301 | | Website                            | Description | 302 | | ----------------------- | ------------------ | 303 | | [Pexels](https://www.pexels.com/videos)| Largest library of free to use videos, donated by the community | 304 | | [Pixabay](https://www.pixabay.com/videos)| Large library of free to use videos, donated by the community similar to Pexels | 305 | | [Coverr.co](https://coverr.co/)| Beautiful free stock video footage | 306 | | [Videezy](https://www.videezy.com/)| Free HD stock footage & 4K videos | 307 | | [Mix Kit](https://mixkit.co/)| Stock video clips & music | 308 | | [Life Of Vids](https://www.lifeofvids.com/)| Free video clips and loops | 309 | | [Videvo](https://www.videvo.net/stock-video-footage/)| Free and premium stock videos | 310 | 311 |
312 | ↥ Back To Top 313 |
314 | 315 | ## Stock Music & Sound Effects 316 | 317 | >Websites that offer free stock music and/or sound effects 318 | 319 | | Website                            | Description | 320 | | ----------------------- | ------------------ | 321 | | [Free Stock Music](https://www.free-stock-music.com/)| Royalty free stock music for YouTube videos, podcasts, etc | 322 | | [Bensound](https://www.bensound.com/)| Download Royalty Free Music for free and use it in your project | 323 | | [Mixkit](https://mixkit.co/free-stock-music/)| Free music for your projects | 324 | | [Freesound](https://freesound.org/)| Free stock music and sounds | 325 | | [Free Music Archive](https://freemusicarchive.org/)| Collaborative database of creative-commons licensed sound for musicians and sound lovers | 326 | | [Musopen](https://musopen.org/music/)| An online copyright free classical music library | 327 | | [Unminus](https://www.unminus.com/)| Free Premium Music for Your Projects 🎁 Royalty Free. Cleared for YouTube. | 328 | 329 |
330 | ↥ Back To Top 331 |
332 | 333 | ## Vectors & Clip Art 334 | 335 | >Free vectors, clipart, illustrations, patterns and more 336 | 337 | | Website                            | Description | 338 | | ----------------------- | ------------------ | 339 | | [Vecteezy](https://www.vecteezy.com/)| Find and download free vector art | 340 | | [Freepik](https://www.freepik.com)| Free vectors, stock photos, PSD and icons | 341 | | [Free Vectors](https://www.freevectors.net/)| Community of vector lovers who share free vector graphics | 342 | | [PNGTree](https://pngtree.com/free-vectors)| png, backgrounds, templates, text effects | 343 | | [Vector4Free](https://www.vector4free.com/)| Free vector graphics | 344 | | [Retro Vectors](http://retrovectors.com/)| Vintage vectors and graphics | 345 | | [Freeble](http://freebbble.com/)| Vectors, patterns, mockups and more | 346 | | [Lukaszadam](https://lukaszadam.com/)| Free Vector atrworks | 347 | | [Illlustrations](https://illlustrations.co/)| Beautiful 100 Illustrations - png, svg | 348 | | [Clipart](https://www.clipart.email/)| Choose great clipart, png, coloring pages, drawings and more for your projects from the free collection! | 349 | | [Growwwkit illustrations](https://growwwkit.com/illustrations/phonies)| A set of 8 simple, black & white, stylish illustrations | 350 | | [World Vector Logo](https://worldvectorlogo.com/)| Download vector logos of brands you love | 351 | | [trianglify.io](https://trianglify.io/) | Generate low-poly backgrounds, textures, and vectors | 352 | | [blob](https://blobs.app/) | Generate Blob shapes for Web and Flutter apps | 353 | | [HiClipart](https://www.hiclipart.com/)| A community for designers to share & download transparent background PNG cliparts | 354 | | [Stories by Freepik](https://stories.freepik.com/) | A collection of free and customizable illustrations for projects | 355 | | [Black Illustrations](https://www.blackillustrations.com/) | Beautiful illustrations of black people (free and premium) | 356 | | [Delesign](https://delesign.com/free-designs/graphics) | A collection of free illustrations and more | 357 | 358 |
359 | ↥ Back To Top 360 |
361 | 362 | ## Product & Image Mockups 363 | 364 | >Create mockups of devices and other products 365 | 366 | | Website                            | Description | 367 | | ----------------------- | ------------------ | 368 | | [Smart Mockups](https://smartmockups.com/)| Create stunning product mockups (free & premium) | 369 | | [Shot Snap](https://shotsnapp.com/)| Create beautiful device mockup images for your app or website design | 370 | | [Screely](https://www.screely.com/)| Instantly turn your screenshot into a mockup | 371 | | [Screen Peak](https://screenpeek.io/)| Create a mockup from a URL | 372 | | [Mockup World](https://www.mockupworld.co/)| The biggest source of free photo-realistic Mockups online | 373 | | [Collab Shot](https://www.collabshot.com/)| Real-time screen grabs and image sharing | 374 | | [Facebook Devices](https://facebook.design/devices)| Images and Sketch files of popular devices | 375 | | [Threed.io](https://threed.io)| Generate 3D mockups right in your browser. | 376 | | [Mockuphone](https://mockuphone.com/)| 100% free mockups for all devices including IOS, Android, Windows Phone, Laptop & Desktop and TV | 377 | 378 |
379 | ↥ Back To Top 380 |
381 | 382 | ## HTML & CSS Templates 383 | 384 | >Websites that offer free beautiful website templates and themes of all types 385 | 386 | | Website                            | Description | 387 | | ----------------------- | ------------------ | 388 | | [HTML5Up](https://html5up.net/)| Very modern, unique responsive HTML5/CSS3 themes | 389 | | [Templatemo](https://templatemo.com/)| Minimal, resume, gallery themes and more | 390 | | [Templated.co](https://templated.co/)| Tons of minimalistic HTML5/CSS3 themes | 391 | | [FreeHTML5](https://freehtml5.co/)| Free & premium HTML5 and Bootstrap themes | 392 | | [StyleShout](https://www.styleshout.com/free-templates/)| Brilliantly crafted free website templates | 393 | | [Start Bootstrap](https://startbootstrap.com/)| Bootstrap starter themes | 394 | | [Zerotheme](https://www.zerotheme.com/)| HTML5, Bootstrap, Prestashop templates | 395 | | [HTML5xCSS3](https://www.html5xcss3.com/)| Collection of wonderful templates in different categories | 396 | | [Colorlib](https://colorlib.com/wp/templates/)| Almost any category of theme you can think of | 397 | | [Free CSS](https://www.free-css.com/free-css-templates)| Huge collection of free templates | 398 | | [Hubspot](https://www.hubspot.com/resources)| Templates, infographics, banners and much more| 399 | | [Mobirise](https://mobirise.com/html-templates/)| Great looking HTML5/CSS3 templates| 400 | | [Bootswatch](https://bootswatch.com/)| Free themes for Bootstrap| 401 | | [Onepagelove](https://onepagelove.com/)| One page websites, templates and resources| 402 | | [Themes For App](https://themesfor.app/)| Free Bootstrap themes and landing pages| 403 | | [BootstrapTaste](https://bootstraptaste.com/)| Premium & Free Bootstrap Templates| 404 | | [BootstrapMade](https://bootstrapmade.com/)| Elegant, clean and beautiful free templates using Bootstrap. | 405 | | [W3Layouts](https://w3layouts.com/)| W3Layouts: 3784+ Free Website Templates for 2020 | 406 | | [Tooplate](https://www.tooplate.com/)| Tooplate: Free HTML Templates for everyone! | 407 | | [Cruip](https://cruip.com/free-templates/)| Fully coded HTML templates to help you easily build your startup landing page without hassles. | 408 | | [Shade](https://grayic.com/shade/) | Get High Converting Landing Pages For Free! | 409 | | [UIdeck](https://uideck.com/) | Free Landing Page Templates and Bootstrap Themes | 410 | | [Splawr](https://splawr.com/) | Free web templates to kickstart your idea! | 411 | 412 |
413 | ↥ Back To Top 414 |
415 | 416 | ## CSS Frameworks 417 | 418 | >CSS/UI frameworks to help build great looking websites and applications 419 | 420 | | Website                            | Description | 421 | | ----------------------- | ------------------ | 422 | | [Tailwind CSS](https://tailwindcss.com/)| Low level, utility-first framework | 423 | | [Bootstrap](https://getbootstrap.com/)| Popular UI framework with tons of components that use both CSS and JS | 424 | | [Materialize](https://materializecss.com/)| A modern responsive front-end framework based on Material Design | 425 | | [Material Design Lite](https://getmdl.io/)| Light framework based on Material Design. No JS dependency | 426 | | [Bulma](https://bulma.io/)| Modern CSS framework with no JS | 427 | | [Skeleton](http://getskeleton.com/)| Extremely light framework for basic UI elements | 428 | | [Semantic UI](https://semantic-ui.com/)| Empowers designers and developers by creating a shared vocabulary for UI | 429 | | [Fomantic UI](https://fomantic-ui.com/)| A community fork of Semantic-UI | 430 | | [Foundation](https://get.foundation/)| Mobile first framework with clean markup | 431 | | [Pure CSS](https://purecss.io/)| A set of small, responsive CSS modules | 432 | | [UIKit](https://getuikit.com/)| Lightweight and modular front-end framework | 433 | | [Susy](https://www.oddbird.net/susy/)| Lightweight, grid-layout engine for Sass | 434 | | [Milligram.io](https://milligram.io/)| Minimalist CSS framework | 435 | | [Vanilla Framework](https://vanillaframework.io/)| Simple, extensible CSS framework written in Sass | 436 | | [Spectre CSS](https://picturepan2.github.io/spectre/)| Lightweight, modern CSS framework | 437 | | [Picnic CSS](https://picnicss.com/)| Lightweight and beautiful library | 438 | | [Wing](https://kbrsh.github.io/wing/)| A beautiful CSS framework designed for minimalists | 439 | | [Chota](https://jenil.github.io/chota/)| A micro (~3kb) CSS framework | 440 | | [Blueprint CSS](https://blueprintcss.dev/)| A lightweight layout library for building great responsive mobile first UIs that work everywhere | 441 | | [W3.CSS](https://www.w3schools.com/w3css/) | A modern CSS framework with support for desktop, tablet, and mobile design by default. Designed to be independent of jQuery or any other JavaScript library | 442 | | [98.css](https://jdan.github.io/98.css/)| A design system for building faithful recreations of old UIs | 443 | | [NES CSS](https://nostalgic-css.github.io/NES.css/)| NES-style CSS Framework | 444 | | [Shoelace.css](https://www.shoelace.style/)| Lightweight, forward-thinking CSS library built with future CSS syntax | 445 | | [MVP.css](https://andybrewer.github.io/mvp/) | A minimalist stylesheet for HTML elements. No class names, no frameworks, just semantic HTML and you're done | 446 | | [Blaze.css](http://blazecss.com/) | Open source modular CSS toolkit providing great structure for building websites quickly | 447 | | [Turret CSS](https://turretcss.com/) | Turret CSS is a styles framework for development of responsive websites. | 448 | | [Cutestrap](https://www.cutestrap.com/) | A strong, independent CSS Framework. | 449 | | [Shorthand](https://shorthandcss.com/) | Shorthand is a free and open source css framework, that allows you to make unique and modern design without writing any css | 450 | | [XP.css](https://botoxparty.github.io/XP.css/) | XP.css is an extention of 98.css. A CSS library for building interfaces that look like old UIs. | 451 | | [Framework7](https://framework7.io/) | Framework7 - is a free and open source framework to develop mobile, desktop or web apps with native look and feel. | 452 | | [Hint.css](https://kushagra.dev/lab/hint/) | A pure CSS tooltip library for your lovely websites. | 453 | | [imagehover.io](http://imagehover.io/) | Pure CSS Image Hover Effect Library | 454 | | [mini.css](https://minicss.org/) | minimal, responsive, style-agnostic CSS framework | 455 | | [Tachyons](https://tachyons.io/) | Create fast loading, highly readable, and 100% responsive interfaces with as little css as possible. | 456 | | [Material Bootstrap](https://fezvrasta.github.io/bootstrap-material-design/) | Material Design with Bootstrap | 457 |
458 | ↥ Back To Top 459 |
460 | 461 | ## CSS Animations 462 | 463 | >CSS animations to build awesome animations for websites and applications 464 | 465 | | Website                            | Description | 466 | | ----------------------- | ------------------ | 467 | | [Animate.css](https://animate.style/)| Just-add-water CSS animations | 468 | | [Bounce.js](http://bouncejs.com/)| Bounce.js is a tool and JS library that lets you create beautiful CSS3 powered animations | 469 | | [Anime.js](https://animejs.com/)| Anime.js (/ˈæn.ə.meɪ/) is a lightweight JavaScript animation library with a simple, yet powerful API. It works with CSS properties, SVG, DOM attributes and JavaScript Objects | 470 | | [Magic Animations](https://www.minimamente.com/project/magic/)| Animations has been one of the most impressive animation libraries available | 471 | | [Zdog](https://zzz.dog/)| Round, flat, designer-friendly pseudo-3D engine for canvas & SVG | 472 | | [CSShake](http://elrumordelaluz.github.io/csshake/)| CSShake delivers exactly what it says on the box — a CSS library designed specifically for shaking elements within your web page | 473 | | [Hover.css](http://ianlunn.github.io/Hover/)| Hover.css is a CSS animation library designed for use with buttons and other UI elements in your website | 474 | | [AniJS](http://anijs.github.io/)| AniJS is an animation library that allows you to add animations to elements in a simple ‘sentence-like’ structure | 475 | | [Animista](http://animista.net/)| CSS Animations On Demand | 476 | | [Tachyons-animate](https://github.com/anater/tachyons-animate)| Tachyons itself is an atomic CSS library with a ton of utility classes for essentially designing anything by adding classes to what you need | 477 | | [Sequence.js](https://www.sequencejs.com/)| Sequence.js is a JavaScript library that provides a responsive CSS framework for creating unique sliders, presentations, banners, and other step-based applications | 478 | | [Infinite](https://tilomitra.github.io/infinite/)| These animations, like rotations and pulses, that are specifically designed to run and repeat forever | 479 | | [OBNOXIOUS.CSS](http://tholman.com/obnoxious/)| Animations for the strong of heart, and weak of mind | 480 | | [MOTION UI](https://zurb.com/playground/motion-ui)| A Sass library for creating flexible CSS transitions and animations | 481 | | [Keyframes.app](https://keyframes.app/)| A graphical user interface for generating custom CSS keyframe animations | 482 | 483 |
484 | ↥ Back To Top 485 |
486 | 487 | ## Javascript Animation Libraries 488 | 489 | >javascript animations libraries to build awesome animations for websites and applications 490 | 491 | | Website                            | Description | 492 | | ----------------------- | ------------------ | 493 | | [Greensock](https://greensock.com/)| A JavaScript library for building high-performance animations that work in every major browser | 494 | | [Velocity.js](http://velocityjs.org/)| Velocity is an lightweight animation engine with the same API as jQuery's $.animate() | 495 | | [lax.js](https://github.com/alexfoxy/laxxx)| Simple & light weight vanilla javascript plugin to create smooth & beautiful animations when you scroll! | 496 | | [Rellax.js](https://github.com/dixonandmoe/rellax)| A buttery smooth, super lightweight, vanilla javascript parallax library | 497 | | [three.js](https://github.com/mrdoob/three.js/)| An easy to use, lightweight, 3D library with a default WebGL renderer. | 498 | | [wow.js](https://wowjs.uk/)| Reveal Animations When You Scroll. | 499 | | [chocolat.js](http://chocolat.insipi.de/)| Free lightbox plugin. | 500 | | [Animate On Scroll](https://michalsnik.github.io/aos/)| Animate on scroll library to reveal animations when You scroll. | 501 | | [Tilt.js](http://gijsroge.github.io/tilt.js/)| A tiny requestAnimationFrame powered 60+fps lightweight parallax hover tilt effect for jQuery. | 502 | | [Roughnotation](https://roughnotation.com/)| Rough Notation is a small JavaScript library to create and animate annotations on a web page | 503 | 504 |
505 | ↥ Back To Top 506 |
507 | 508 | ## UI Components & Kits 509 | 510 | >Not quite "frameworks", but tools for creating user interfaces with components or UI kits 511 | 512 | | Website                            | Description | 513 | | ----------------------- | ------------------ | 514 | | [TagFold](https://tagfold.com/)| Useful Bootstrap 4, HTML5, CSS3 Code Snippets to Build Web Layouts | 515 | | [UILang](http://uilang.com/)| A minimal, ui-focused programming language for web designers | 516 | | [Medialoot CSS Components](https://medialoot.com/free-themes/css-components/)| Calendars, price grids and other UI components | 517 | | [Froala Design Blocks](https://froala.com/design-blocks)| Over 170 responsive design blocks ready to be used in your web or mobile apps | 518 | | [Material Design For Bootstrap](https://fezvrasta.github.io/bootstrap-material-design/)| Open source toolkit for building material design with Bootstrap | 519 | | [Photonkit](http://photonkit.com/)| Desktop UI library for Electron | 520 | | [Flat UI](https://designmodo.github.io/Flat-UI/)| Minimal free user interface kit| 521 | | [Shards](https://designrevision.com/downloads/shards/)| A free and modern UI toolkit for web makers based on Bootstrap | 522 | | [Creative Tim](https://www.creative-tim.com/)| All types of UI libraries and kits including JS frameworks like React | 523 | | [Brumm Shadow Maker](https://brumm.af/shadows)| An online tool to make css shadows| 524 | | [AdminLTE](https://adminlte.io/)| Best open source admin dashboard & control panel theme| 525 | | [SpinKit](https://tobiasahlin.com/spinkit/)| Simple CSS Spinners| 526 | | [Epic Spinners](https://epic-spinners.epicmax.co/)| CSS spinners collection with Vue.js integration. | 527 | | [Loading.io](https://loading.io/)| Online service provider for creating simple animations, spinners, progress bar and more | 528 | | [Moving Letters](https://tobiasahlin.com/moving-letters/)| Animated Text with JavaScript and anime.js| 529 | | [CSS Layout](https://csslayout.io/)| A collection of popular web layouts and patterns in pure CSS | 530 | | [Codyhouse](https://codyhouse.co/)| Kick-start your web projects with CodyHouse's front-end framework and library of accessible HTML, CSS, JavaScript components | 531 | | [Tailwind Starter Kit](https://github.com/creativetimofficial/tailwind-starter-kit)| Tailwind Starter Kit a beautiful extension for TailwindCSS, Free and Open Source | 532 | | [Tailwindtoolbox](https://www.tailwindtoolbox.com/)| Open source starter templates and components, a plugins directory and useful tools/utilities to kick start your Tailwind CSS project. | 533 | | [tailwindcomponents](https://tailwindcomponents.com/)| A free repository for community components using TailwindCSS | 534 | | [sweetalert](https://sweetalert.js.org/)| SweetAlert makes popup messages easy and pretty. | 535 | | [sweetalert2](https://sweetalert2.github.io/)| A beautiful,responsive,customizable,accessible replacement for javascript's popup boxes | 536 | | [tailblocks](https://mertjf.github.io/tailblocks/)| Open source ready-to-use Tailwind CSS components. | 537 | | [Soft Components](https://soft-components-docs.web.app/)| A set of framework-agnostic web components based on neumorphic design. | 538 |
539 | ↥ Back To Top 540 |
541 | 542 | 543 | ## React UI 544 | 545 | >UI and component libraries for the React JavaScript framework 546 | 547 | | Website                            | Description | 548 | | ----------------------- | ------------------ | 549 | | [Material UI](https://material-ui.com/)| React components for faster and easier web development, based on Material Design | 550 | | [Chakra UI](https://chakra-ui.com/)| Build accessible React apps & websites with speed. [Openchakra](https://openchakra.app/) | 551 | | [React Bootstrap](https://react-bootstrap.github.io/)| Bootstrap rebuilt for React. Include Bootstrap components right in your JavaScript | 552 | | [ReactStrap](https://reactstrap.github.io/)| Another Bootstrap UI library for React | 553 | | [React Admin](https://marmelab.com/react-admin/)| A frontend Framework for building admin applications. Supports API's out of the box| 554 | | [BlueprintJS](https://blueprintjs.com/)| React-based UI toolkit for the web | 555 | | [React Semantic UI](https://react.semantic-ui.com/)| UI components based off of the Semantic UI framework | 556 | | [Shards React](https://designrevision.com/downloads/shards-react/)| React UI kit featuring a modern design system with dozens of custom components | 557 | | [React Virtualized](https://bvaughn.github.io/react-virtualized)| UI set for data. Includes tables, lists, sorting, etc. | 558 | | [React Toolbox](http://react-toolbox.io/#/)| Material design UI library for React | 559 | | [Elastic UI](https://elastic.github.io/eui/#/)| Distributes UI React components and static assets for use in building web layouts | 560 | | [React Desktop](http://reactdesktop.js.org/)| Desktop styled components in React. Includes MacOS and Windows based components | 561 | | [Onsen React](https://onsen.io/react/)| Distributes Components for hybrid mobile apps with React and Onsen UI | 562 | | [Evergreen](https://evergreen.segment.com/)| Design system for React | 563 | | [Rebass](https://rebassjs.org/)| React primitive UI components built with styled system | 564 | | [Grommet](https://v2.grommet.io/)| mobile first UI component library | 565 | | [Rimble](https://rimble.consensys.design/)| React design kit, library and guides | 566 | | [Landing Page Template](https://github.com/cruip/open-react-template/)| Open source landing page template for react | 567 | | [Elemental UI](http://elemental-ui.com/)| A UI Toolkit for React.js Websites and Apps | 568 | | [Ant Design](https://ant.design/)| Open source design React ui library. | 569 | | [PRIMEREACT](https://www.primefaces.org/primereact/)| The ultimate collection of design-agnostic, flexible and accessible React UI Components | 570 | | [Primer Components](https://primer.style/components/)| Primer Components are React components which implement GitHub's Primer Design System | 571 | | [Orbit](https://orbit.kiwi/)| Design system and React UI components for travel projects. | 572 | | [Base Web](https://baseweb.design/)| Base Web provides a robust suite of components out of the box | 573 | | [Backpack UI](http://lonelyplanet.github.io/backpack-ui/?path=/story/styles--design-tokens)| Backpack is the Lonely Planet toolset that we use to build front end apps. | 574 | | [Reaviz](https://reaviz.io)| Data visualization library for React based on D3 | 575 | | [React Suite](https://rsuitejs.com/en/)| A suite of React components, sensible UI design, and a friendly development experience. | 576 | | [React Spring](https://www.react-spring.io/)| Spring-physics based animation library for React applications. | 577 | | [Recharts](http://recharts.org/en-US/)| A composable charting library built on React components. | 578 | | [Vercel UI](https://github.com/zeit-ui/react) | Modern and minimalist React UI library | 579 | | [Framer Motion](https://www.framer.com/motion/) | A React library to power production-ready animations. | 580 | 581 | 582 |
583 | ↥ Back To Top 584 |
585 | 586 | ## Vue UI 587 | 588 | >UI and component libraries for the Vue JavaScript framework 589 | 590 | | Website                            | Description | 591 | | ----------------------- | ------------------ | 592 | | [Vuetify](https://vuetifyjs.com/en/)| Material design component framework | 593 | | [Bootstrap Vue](https://bootstrap-vue.org/)| Use Bootstrap components with Vue | 594 | | [Buefy](https://buefy.org/)| Lightweight UI components based on Bulma | 595 | | [Semantic UI Vue](https://semantic-ui-vue.github.io)| Semantic UI Vue is the Vue integration for Semantic UI | 596 | | [Quasar](https://quasar.dev/)| High-performance Material Design component suite with builders for SPA, SSR, PWA, Mobile (Cordova & Capacitor), Desktop (Electron) and Browser extensions | 597 | | [Element](https://element.eleme.io/#/en-US)| Desktop UI library for Vue | 598 | | [Fish UI](https://myliang.github.io/fish-ui/#/components/index)| Vue UI toolkit for the web | 599 | | [Keen UI](https://josephuspaye.github.io/Keen-UI)| VueUI library with a simple API, inspired by Google's Material Design | 600 | | [Onsen Vue](https://onsen.io/vue/)| Distributes Components for hybrid mobile apps with Vue and Onsen UI | 601 | | [Vuejsexamples](https://vuejsexamples.com)| A nice collection of useful vuejs UI components | 602 | | [Inkline](https://inkline.io)|Inkline is a modern UI/UX Framework for Vue.js designed for creating flawless responsive web applications | 603 | | [Vuesax](https://vuesax.com/)|Unique and reusable UI components | 604 | | [Antdv](https://antdv.com/)|UI library for Vue based on Ant Design | 605 | | [Shards Vue](https://designrevision.com/downloads/shards-vue/)|A high-quality & free Vue UI kit featuring a modern design system with dozens of custom components | 606 | | [Prime Vue](https://www.primefaces.org/primevue/)|Powerful yet simple to use, versatile, performant Vue UI Component Library to help you build stunning user interfaces.| 607 | 608 |
609 | ↥ Back To Top 610 |
611 | 612 | ## Angular UI 613 | 614 | >UI and component libraries for the Angular JavaScript framework 615 | 616 | | Website                            | Description | 617 | | ----------------------- | ------------------ | 618 | | [Material Angular](https://material.angular.io/)| UI library for Angular based on Material design | 619 | | [NG Bootstrap](https://ng-bootstrap.github.io/#/home)| UI library for Angular based on the Bootstrap framework | 620 | | [PrimeNG](https://www.primefaces.org/primeng/#/)| Powerful UI component library for Angular | 621 | | [Onsen Angular](https://onsen.io/angular2/)| Hybrid mobile and PWA UI library for Angular and Onsen UI | 622 | | [NG Lightning](https://ng-lightning.github.io/ng-lightning/#/)| Native Angular components & directives for Lightning Design System | 623 | | [NG Semantic](https://ng-semantic.herokuapp.com/)| UI library for Angular based on Semantic UI | 624 | | [Nebular](https://akveo.github.io/nebular/)| Customizable UI Kit, Auth & Security for Angular | 625 | | [Alyle UI](https://alyle.io/)| Minimal components set for Angular | 626 | | [NGX Bootstrap](https://valor-software.com/ngx-bootstrap/#/)| Another UI library for Angular based on the Bootstrap framework | 627 | | [NG Zorro](https://ng.ant.design/)| UI library for Angular based on Ant Design | 628 | | [Pagination for datatables](https://www.npmjs.com/package/ngx-pagination) | npm library for pagination | 629 | | [Multi select dropdown](https://www.npmjs.com/package/ng-multiselect-dropdown) | for multi select dropdowm in forms | 630 |
631 | ↥ Back To Top 632 |
633 | 634 | ## Svelte UI 635 | 636 | >UI and component libraries for the Svelte Javascript compiler 637 | 638 | | Website                            | Description | 639 | | ----------------------- | ------------------ | 640 | | [Svelte Material UI](https://sveltematerialui.com/)| UI library for Svelte based on Material Design | 641 | | [SvelteStrap](https://bestguy.github.io/sveltestrap/)| UI library for Svelte based on the Bootstrap framework | 642 | | [Svelte Flat UI](https://svelteui.js.org/#/checkbox)|UI library for Svelte based on Flat Design | 643 | 644 |
645 | ↥ Back To Top 646 |
647 | 648 | ## Design Systems & Style Guides 649 | 650 | >Design systems, style guides, toolkits, docs. Some of these are design guides for top companies/websites 651 | 652 | | Website                            | Description | 653 | | ----------------------- | ------------------ | 654 | | [Material Design](https://material.io/)| Google's Material Design | 655 | | [Ant Design](https://ant.design/)| Design system for enterprise-level products | 656 | | [Apple Design Resources](https://developer.apple.com/design/resources/)| Guides and templates for using Apple design and UI | 657 | | [Primer](https://primer.style/)| Design, build, and create with GitHub’s design system | 658 | | [Alta UI](https://www.oracle.com/webfolder/ux/middleware/alta/index.html)| Oracle's design system and toolkit | 659 | | [Pulse](https://pulse.heartbeat.ua/)| Design system, guides and React component library | 660 | | [Bolt](https://boltdesignsystem.com/)| Robust Twig and web component powered UI components | 661 | | [Clarity Design System](https://clarity.design/)| UX guidelines, HTML/CSS framework, and Angular components | 662 | | [AtlasKit](https://atlaskit.atlassian.com/)| Atlassian's official UI library, built according to the Atlassian Design Guidelines | 663 | | [Audi Design Resources](https://www.audi.com/ci/en/guides/user-interface/introduction.html)| Audi UI design system and toolkit | 664 | | [Carbon Design Systems](https://www.carbondesignsystem.com/)| Carbon is IBM’s open-source design system for products and experiences | 665 | | [Yelp Style Guide](https://www.yelp.com/styleguide)| Yelp style guide, components and toolkit | 666 | | [Comet](https://comet.discoveryeducation.com/)| Scalable design system of visual language, components, and design assets | 667 | | [ETrade Design System](https://etrade.design/)| Guides and toolkits that blend finance with simplicity and ease of use | 668 | | [Fundamental Library](https://sap.github.io/fundamental-styles/)| Open source and community driven project for consistent user interfaces| 669 | | [Infor Design](https://design.infor.com/)| Guidelines and resources to create meaningful experiences for Infor’s products | 670 | | [Lexicon](https://liferay.design/lexicon/)| An experience language for crafting beautiful UI | 671 | | [Mailchimp UI/UX](https://ux.mailchimp.com/patterns/color)| Style guide and components from Mailchimp | 672 | | [Marvel Style Guide](https://marvelapp.com/styleguide/overview/introduction)| Set of design principles and components | 673 | | [Microsoft Fluent UI](https://developer.microsoft.com/en-us/fluentui#/)| Collection of UX frameworks from Microsoft | 674 | | [Pluralsight Design System](https://design-system.pluralsight.com/)| Design guide with components for designing with Pluralsight | 675 | | [Polaris](https://polaris.shopify.com/)|Design system that creates great experiences for all of Shopify’s merchants | 676 | | [Mozilla Protocol](https://protocol.mozilla.org/)| Protocol is a design system for Mozilla and Firefox websites | 677 | | [SendGrid Style Guide](http://styleguide.sendgrid.com/)| UI library for developing consistent UI/UX at SendGrid | 678 | | [VTEX Styleguide](https://styleguide.vtex.com/)| Reusable patterns, components and assets related to product design in VTEX | 679 | | [Rizzo](https://rizzo.lonelyplanet.com/styleguide/design-elements)| Style guide with UI components, JS components, widgets, etc | 680 | | [Atomize](https://atomizecode.com/)| UI framework that helps developers collaborate with designers and build consistent user interfaces effortlessly | 681 | | [StyleGuides.io](http://styleguides.io/)| A directory of 500+ styleguides | 682 | | [Done Design System](https://uilibrary.github.io/done-design-system/)| Open source design system, guides & components | 683 | | [Skoda Brand System](https://skoda-brand.com/explore-our-brand) | Design guideline for developing applications under the Skoda brand | 684 | | [Spectrum](https://spectrum.adobe.com/) | Adobe’s design system that provides components and tools to help product teams work more efficiently, and to make Adobe’s applications more cohesive. | 685 | 686 |
687 | ↥ Back To Top 688 |
689 | 690 | ## Online Design Tools 691 | 692 | >All kinds of online tools for design, from photo editors to wireframing, and more 693 | 694 | | Website                            | Description | 695 | | ----------------------- | ------------------ | 696 | | [Figma](https://www.figma.com/graphic-design-tool/)| Online graphic design tool (Free & paid options) | 697 | | [Vectr](https://vectr.com/)| Free vector graphics software| 698 | | [Canva](https://www.canva.com/)| Create beautiful designs (Free & Paid) | 699 | | [Get Waves](https://getwaves.io/)| A free SVG wave generator to make unique SVG waves for web design | 700 | | [Clippy](https://bennettfeely.com/clippy/)| Easy CSS clip-path maker | 701 | | [Fancy Border Radius](https://9elements.github.io/fancy-border-radius/full-control.html)| Eight values specifying border-radius in CSS ( border-radius generator ) | 702 | | [Wireframe.cc](https://wireframe.cc/)| Wireframing tool (free & paid) | 703 | | [Fotor](https://www.fotor.com/)| Photo editor and design maker | 704 | | [Pixlr](https://www.pixlr.com/)| Online photo editor | 705 | | [Animoto Video Maker](https://animoto.com/apps/online-video-maker)| Make videos online | 706 | | [RemoveBG](https://www.remove.bg/)| Remove image backgrounds | 707 | | [Photo Creator](https://photos.icons8.com/creator)| Create your own photos instead of searching for stock | 708 | | [Visme](https://www.visme.co/)| Create presentations, infographics and more | 709 | | [Infogram](https://infogram.com/)| Create infograms | 710 | | [ChartGo](https://www.chartgo.com/)| Create charts and graphs online | 711 | | [Cartoon Photo](https://cartoon.pho.to/)| Turn photos into cartoons | 712 | | [Logo Maker](https://logomakr.com/)| Create custom logos | 713 | | [Whimsical](https://whimsical.com/)| Wireframes, diagrams and more (4 free) | 714 | | [Whiteboard](https://witeboard.com/)| Online drawing tool | 715 | | [Octopus](https://octopus.do/)| Sitemap builder | 716 | | [CTA Button Maker](https://www.clickminded.com/button-generator/)| Create call to action buttons | 717 | | [Blobmaker](https://www.blobmaker.app/)| Blobmaker is a free generative design tool, to help you quickly create random, unique, and organic-looking SVG shapes | 718 | | [Personas](https://personas.draftbit.com/)| A playful avatar generator for the modern age | 719 | | [SoftUI](https://www.softui.io)| A Soft UI (neumorphism) CSS generator | 720 | | [Photopea](https://www.photopea.com)| A Online Photoshop editor | 721 | | [Excalidraw](https://excalidraw.com/)| Virtual whiteboard for sketching hand-drawn like diagrams | 722 | | [Diagrams](https://www.diagrams.net/)| Diagram software and Flowchart maker | 723 | | [MapInSeconds](http://mapinseconds.com/)| Simple way to visualize your data with a map | 724 | | [Grid Malven](http://grid.malven.co/)| A css grid cheatsheet to reference when creating a css grid | 725 | | [Flex Malven](http://flexbox.malven.co/)| A flexbox grid cheatsheet to reference when working with flexbox | 726 | | [Smart Upscaler](https://icons8.com/upscaler) | Upscale images by 2-4x resolution | 727 | | [GetAvataaars](https://getavataaars.com/) | Fun and Colorful free avatars web generator tool by Fang-Pen Lin using Pablo Stanley sketch library | 728 | | [Big Heads](https://github.com/RobertBroersma/bigheads) | Easily generate avatars for your projects with Big Heads by Robert Broersma. 729 | | [Webflow](https://webflow.com/) | Break the code barrier, Build better business websites, faster. Without coding. | 730 | | [Trace](https://stickermule.com/trace) | Instantly remove the background from your photos | 731 | | [Neumorphism.io](https://neumorphism.io/#55b9f3) | Generate Soft-UI CSS shadow code | 732 | | [DB Designer](https://app.dbdesigner.net/) | Design your database for free online | 733 | | [Ui Bakery](https://uibakery.io/) | Create full-fledged web apps visually | 734 | | [Faux](http://knutsynstad.com/fauxcode/) | Turn real code into faux code | 735 | | [Rive](https://rive.app/) | Real-time interactive design tool that allows you to design, animate, and immediately integrate your assets into any platform. 736 | | [Unscreen](https://www.unscreen.com/) | Remove Video Background 100% Automatically and Free | 737 | | [Kodeshot](https://www.kodeshot.net/) | Convert your source code into nice pictures for your articles, tweets, messages, posts... | 738 | | [Wix](https://www.wix.com/) | Create a Website You’re Proud Of | 739 | | [GTmetrix](https://gtmetrix.com/) | Website Speed and Performance Optimization | 740 | | [Framer](https://www.framer.com/) | Is prototyping tool for teams | 741 | 742 |
743 | ↥ Back To Top 744 |
745 | 746 | ## Downloadable Design Software 747 | 748 | >Free software for UI, photo, 3d modeling, etc. Alternatives to paid software like Photoshop 749 | 750 | | Website                            | Description | 751 | | ----------------------- | ------------------ | 752 | | [Gimp](https://www.gimp.org/)| Free & open source image editor similar to Photoshop | 753 | | [Gravit Designer](https://www.designer.io/en/)| Free full-featured vector graphic design app that works on ALL platforms | 754 | | [Blender](https://www.blender.org/download/)| Open source, free animation, 3D modeling, etc. | 755 | | [Raw Therapee](https://rawtherapee.com/)| Cross-platform raw image processing program | 756 | | [Be Funky](https://www.befunky.com/features/graphic-designer/)| Online design program | 757 | | [Krita](https://krita.org/en/download/krita-desktop/)| Sketching and painting program designed for digital artists | 758 | | [Pencil Project](https://pencil.evolus.vn/)| GUI prototyping software | 759 | | [Inkscape](https://inkscape.org/)| Powerful free design tool | 760 | | [Adobe XD](https://www.adobe.com/products/xd.html)| Free design tool from Adobe | 761 | | [Shapes.so](https://shape.so/pricing)| Icons that can be used as code in your projects | 762 | | [Lunacy](https://icons8.com/lunacy) | Sketch for Windows | 763 | | [InVision Studio](https://www.invisionapp.com/studio)| Free screen designing tool from InVision | 764 | | [Darktable](https://www.darktable.org/)| Free & Open source photography workflow application and raw developer | 765 | | [Inpixio photo Editor](https://www.inpixio.com/free-photo-editor)| Free Photo Editor: For windows only | 766 | | [Colorpicker](https://colorpicker.fr)| Open Source colors software: Retrieve, manipulate and store your colors easely! | 767 | 768 |
769 | ↥ Back To Top 770 |
771 | 772 | ## Design Inspiration 773 | 774 | >Here are some websites to get inspiration for design and UI 775 | 776 | | Website                            | Description | 777 | | ----------------------- | ------------------ | 778 | | [Behance](https://www.behance.net/)| Design projects featured by different creators | 779 | | [Dribbble](https://dribbble.com/)| Design projects featured by different creators | 780 | | [Httpster](https://httpster.net/2020/apr/)| Showcases websites made by people from all over the world | 781 | | [Microcopy Inspirations](https://www.microcopyinspirations.com/)| Curated collection of UX writing examples, microcopy examples and copywriting examples | 782 | | [Inspofinds](https://inspofinds.com/)| Latest design work from designers and the design community | 783 | | [Design Notes](https://www.designnotes.co/)| Free online resource library for product designers | 784 | | [Land Book](https://land-book.com/)| Displays a large collection of websites to help find inspiration | 785 | | [Frontend Mentor](https://www.frontendmentor.io/)| Real-world UI Challenges using HTML, CSS and Javascript | 786 | | [Awwwards](https://www.awwwards.com/)| A website that rate and collects the best websites in the world in UI | 787 | | [Codrops](https://tympanus.net/codrops/)| A website that collects the best UI ideas and patterns and make tutorials of it| 788 | | [SaaS Landing Page](https://saaslandingpage.com/)| Discover the best landing page examples created by top-class SaaS companies | 789 | | [Pages.xyz](https://www.pages.xyz/)| Curate and discover the best designed web pages | 790 | | [UI Movement](https://uimovement.com/)| UI Movement is a community of design enthusiasts who share and discuss the most interesting and unique UI designs | 791 | | [lapa ninja](https://www.lapa.ninja/)| Best landing page inspiration | 792 | | [Freefrontend](https://freefrontend.com/)| Free front end design from css html and javascript. latest work some design part | 793 | | [Webframe](https://webframe.xyz)| Discover and be inspired by beautiful webapp designs | 794 | | [Collect UI](http://collectui.com/)| Daily inspiration collected from daily ui archive and beyond. Hand picked, and updating daily. | 795 | | [Graphic Burger](https://graphicburger.com/) | A site offering a free and pain icons, mock-ups, Ui-Kits, text effect and backgrounds. This site's resource are a mix of free and paid resources. Icons is on a mix of PNG, SVG, EPS and Sketch Format. Some resources are confusing as there are sponsored content in the middle of the free sets. | 796 | | [Really Good Emails](https://reallygoodemails.com/) | A site offering users a ton of company e-mails from customer service to marketing. | 797 | | [Free Design Resource](https://freedesignresources.net/) | A site offering fonts, mockups, templates graphics and ui kits. | 798 | | [Site Inspire](https://www.siteinspire.com/) |siteInspire is a showcase of the finest web and interactive design. | 799 | | [Web Design Inspiration](https://www.webdesign-inspiration.com/) | A site for web design inspiration, updated daily. | 800 | | [NavNav](https://navnav.co/) | Responsive navigation examples | 801 | | [Calltoidea](https://www.calltoidea.com/) | Collection of different web Components for inspiration. | 802 | | [MediaQueri.es](https://mediaqueri.es/) | A collection of inspirational websites using media queries and responsive web design | 803 | | [Mulzli Search](https://search.muz.li) | Search engine for design inspiration | 804 | 805 |
806 | ↥ Back To Top 807 |
808 | 809 | ## Image Compression 810 | 811 | >Websites that allow you to compress large images 812 | 813 | | Website                            | Description | 814 | | ----------------------- | ------------------ | 815 | | [TinyPNG](https://tinypng.com/)| Smart PNG and JPEG compression 816 | | [Optimizilla](https://imagecompressor.com/)| Online JPEG and PNG optimizer / compressor with settings and archive download 817 | | [Compressor.io](https://compressor.io/)| JPEG, PNG, GIF, SVG Compression | 818 | | [Squoosh.app](https://squoosh.app/)| Image compression from Google Chrome Labs | 819 | | [BulkResizePhotos](https://bulkresizephotos.com/)| Bulk image resizing, compression & converting that perform all the tasks within the browser (It works offline) | 820 | | [iLoveIMG](https://www.iloveimg.com/)| The fastest free web app for easy image modification | 821 | | [SvgOMG](https://jakearchibald.github.io/svgomg/)| Online SVG optimizer with a lot of settings and possibility to cut and paste svg code directly in it.| 822 | | [CompressJPEG](https://compressjpeg.com/)| Compress JPEG images with size even greater than 5MB | 823 | | [CompressNow](https://compressnow.com/)| JPEG, GIF, PNG Compression | 824 | | [Promo Image Resizer](https://promo.com/tools/image-resizer/)| Free Image and Photo Resizer | 825 | | [Image Optimizer](http://www.imageoptimizer.net/)| Image Optimizer Free With Quality Options | 826 | | [SVGminify](https://www.svgminify.com/)| This tool removes superfluous information, thereby reducing the size of your SVG files | 827 | | [JPEG Optimizer](http://jpeg-optimizer.com/)| Free online tool for resizing and compressing digital photos and images for displaying on the web | 828 | | [Resizing.app](https://resizing.app/)| Resize Your Images Online | 829 | 830 |
831 | ↥ Back To Top 832 |
833 | 834 | ## Others 835 | 836 | >Uncategorized Stuff 837 | 838 | | Website                            | Description | 839 | | -------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ | 840 | | [everysize.kibalabs.com](https://everysize.kibalabs.com/) | Check your awesome responsive webpage looks great in every size | 841 | | [Devhints.io](https://devhints.io/) | This is a modest collection of cheatsheets on Internet | 842 | | [The Web Toolbox](https://thewebtoolbox.cc/)| A collection of handy, free-to-use tools for web developers, programmers and designers. | 843 | | [WebDevTrick](https://webdevtrick.com/)| A famous blog for many amazing HTML, CSS, JQuery designs. | 844 | | [css-tricks](https://css-tricks.com/)| Free CSS tricks and some unique ideas for beginners and advanced | 845 | | [Material Design Resizer](https://material.io/resources/resizer/)| An interactive viewer that helps designers test material design breakpoints across desktop, mobile, and tablet | 846 | | [Nodesign.dev](https://nodesign.dev) | A collection of tools for developers who have little to no artistic talent| 847 | | [A11ygator](https://a11ygator.chialab.io/)| A web tool to scan websites against WCAG rules | 848 | | [Commitizen](http://commitizen.github.io/cz-cli/)| Command line tool to formatted commit messages according to the standards | 849 | | [CleanCss](https://www.cleancss.com/)| Tool For Code Foramtter, Minifier, File Converter | 850 | | [Tiny helpers](https://tiny-helpers.dev/)| A collection of free single-purpose online tools for web developers | 851 | | [CSS Ribbon Generator](https://www.cssportal.com/css-ribbon-generator/)| This generator will assist in creating a pure CSS corner ribbon. | 852 | | [Can I Use](https://caniuse.com/) | Check cross-browser compatibility of frontend technologies. | 853 | | [kangax-js-compat-table](https://kangax.github.io/compat-table/es6/) | Check JavaScript versions (ES5, ES6, ES2016+ etc.) compatibility across different compilers, servers/runtimes and platforms (Desktop and Mobile).| 854 | | [mydevice.io](https://www.mydevice.io/)| Most commonly used device resolutions including phones and tablets | 855 | | [Codepen](https://codepen.io/) | Build, test and discover frontend code. | 856 | | [Responsively](https://manojvivek.github.io/responsively-app/) | A tool for designers and frontend developers to design and debug their in all platforms with ease | 857 | | [html2pdf.js](https://ekoopmans.github.io/html2pdf.js/) | Client-side HTML-to-PDF rendering using pure JS. | 858 | | [CSS Reference](https://cssreference.io/) | A collection of all css properties and definitions in detail | 859 | | [Critical Path CSS Generator](https://www.sitelocity.com/critical-path-css-generator) | Generate critical css for your web pages | 860 | 861 | 862 |
863 | ↥ Back To Top 864 |
865 | --------------------------------------------------------------------------------