Web Development is perhaps the fuzziest science of our times. It keeps evolving constantly and you must keep up with tons of things.
One of the most important things are resources, be it fonts, css and bootstrap themes, stock icons and background images or javascript frameworks. My question is what is the standard practice in this regard, where do you get these things from?
Top comments (18)
Logodust for logos if I need something quickly for prototyping.
Undraw for open source svg illustrations
Heropatterns, thepatternlibrary and Novapattern for repeatable patterns
Cupcake Ipsum, Bacon Ipsum, Cat Ipsum for better Lorem Ipsum text
templated.co for free templates/inspiration
UIGoodies also has quite a few decent things on there.
cssfx for quick copy-paste css animations
Man this was useful wow I just go about making up some baseline Bulma page as frontend for playing around in node ;/
I used to rely heavily on stuff like Bootstrap/Bulma, but have found myself recently getting attached to utility frameworks like
https://tailwindcss.com/
. You can quickly create buttons and stuff with inline classes like<button class="px-4 py-2 border border-grey-darkest rounded hover:bg-grey-light">Click me!</button>
I feel like sometimes when prototyping you can get caught up with frameworks like Bulma trying to get everything to look nice and work well together, but if you create your own minimalistic components it can speed dev up a bit! Depends whether you hate css or not though I suppose haha
Tailwind seems wonderful! But you also need a grid for your layouts, do you use a different minimal framework for that?
Then there's also the need for things like responsiveness, modal dialogs, navbars, carousel, etc. which come built-in with Bootstrap. What do you use for those?
Are these minimal frameworks too difficult to handle for someone with minimal knowledge of CSS?
For a grid I usually just use tailwind's built in width stuff, having a two column layout would be something like
where initially it wraps and on medium screens and above it sits side by side.
I've found the responsive stuff in tailwind to be great. You can even hook directly in to the config if configured properly and do stuff like
As for stuff like modals, it's not too hard to achieve these in pure css without needing javascript or pre-built component (I know Bootstrap used to rely pretty heavily on jQuery which was one of the main reasons I moved away from it when starting to use stuff like Vue/React). Check out tailwindcomponents if you get chance, there's a load of pre built tailwind things there that you can either get inspiration from or copy :)
I wasn't that confident with CSS stuff until more recently and using tailwind has been a blessing.
Just what I needed! Thanks!
Angie
I get stock photos from Pexels, Icons from icons8 and fonts from Google Fonts.
Pexels is great, I've found unsplash to be good too
I was just drawn to Pexels because of the background photos on Brave Browser lol Unsplash is awesome too!
I won't duplicate what others have said, but in addition:
Fonts: Adobe Typekit (now free) also well known Google fonts. Avoid dafonts and similar to it like a plague.
Icons inspiration: the noun project.
Some designers share free resources on Behance as self-promotion. You can search there too.
Be aware of Dribbble and other platforms. While it's cool search for inspiration, a good designer follows users needs, not the hype or trends.
Lastly, for any real professional work I hire illustrators or other professional profiles to the job, and if there is no budget for that then quality stock resources.
If need be I make images and icons. I’ve had a long history with design. I do own some pro software (Affinity Designer) which makes a lot of things easier. Free things exist too. Designing things in SVG is great.
There are a number of websites that offer free to use resources though for those who don’t have time/skill/personnel or etc.
Lorem Ipsum
blindtextgenerator.com/lorem-ipsum
generator.lorem-ipsum.info/
officeipsum.com/index.php — For fun
Web Typography
theasciicode.com.ar/ — ASCII chart
dev.w3.org/html5/html-author/charref — Character References
practicaltypography.com/straight-a... — quotations codes
cs.tut.fi/~jkorpela/dashes.html — codes for dashes and other shapes
Colors
coolors.co/
webgradients.com/
Pictures
placekitten.com/
Random Names
uinames.com/
fakenamegenerator.com/
CSS Stuff
leaverou.github.io/css3patterns/
cssmatic.com/
I have a very long list of silly text generators. I found them by searching for text generators. When I find something I like, I bookmark it. I find things I like either through classes, or maybe something like this where people list their favorite tools.
I've gained so many resources from this thread! Wow!
We forgot the best lipsum of all: bobrosslipsum.com 😁
This is a collection of some good design and development resources
jonas.io/resources
Nice works! Will be amazing include this resource on our tools github.com/enBonnet/Frontend-Tools
I'm to using iconfinder for get several icons, pickImage for images background and currently I'm developing with kotlin lenguage