8 Amazing websites that will save your time while writing CSS!
A thread 🧵👇
1. mycolor .space
Never waste hours on finding the Perfect Color Palette
JUST ENTER A COLOR!
And create an amazing color palette.
2: cssbuttons .io
Find the perfect button for your project
All content is open-source and free to use!
3: getwaves .io
A free SVG wave generator to make unique SVG waves for your next web design. Choose a curve, adjust complexity, randomize!
4: neumorphism .io
CSS code generator that will help with colors, gradients, and shadows.
5: bgjar .com
Free SVG background generator for your websites, blogs, and app.
6: Remove .bg
Removes the background of any image.
100% Automatic and FREE.
7: shadows.brumm .af
Create smooth beautiful shadows for your web development projects.
8: cssgradient .io
Transitions in linear gradients occur along a straight line determined by an angle or direction. A CSS linear gradient can be coded by using the linear gradient.
That's all for the thread.
If you find it useful retweet the first one.
- follow @codewithhajra
Happy Learning. 💙🌸
• • •
Missing some Tweet in this thread? You can try to
force a refresh
What is function and why do we use it?
- Local and Global variables in JavaScript.
A small thread🧵👇
- A JavaScript function is a block of code designed to perform a particular task. It allows us to write more maintainable code. Define the code once, and use it many times. You don’t need to write the same code over and over again.
- It is defined with the function keyword, followed by a name and parentheses (). The code to be executed by the function is placed inside curly brackets: {}
- A JavaScript function is executed when "something" invokes it (calls it).
1- Figure: The <figure> tag specifies self-contained content, like illustrations, diagrams, photos, etc.
- The <figcaption> element is used to add a caption for the <figure> element.
2- Details: The <details> tag is often used to create an interactive widget that the user can open and close. By default, the widget is closed. When open, it expands and displays the content within.
- The <summary> tag defines a visible heading for the <details> element.