+ 1
What is CSS?
I'm very new to coding and I have started a project on a code and I'm very curious on what css is in the html
7 Answers
+ 6
Peter Reyna ,
https://www.sololearn.com/learn/courses/web-development
Go through the lessons in web development course to understand CSS better...
+ 4
CSS (Cascading Style Sheets) is used to design a website. Which is used by web designer and programmer. It works to make any elements in the web page more beautiful and attractive than before. It is used with HTML.
In general terms, it is used to balance a website in a good and attractive way. Like Background Color, Font Size or Color etc. of a website. With its help, you can make changes in any web page as per your requirement.
+ 3
Without using CSS, the website will not look attractive. There are 3 types of CSS which are below:
Inline CSS
Internal/ Embedded CSS
External CSS
+ 3
In a nutshell,
HTML is the struct of your page
CSS is the style of your page
JavaScript the dynamics and effects in your page ..
+ 3
It is a Styling tool used together with html to style websites.
+ 2
For simple description, Imagine you have a plain white piece of paper (that's HTML) with some words and pictures on it. Now, you want to make it colorful and beautiful. That's where CSS comes in. It's like a magic paintbrush that can change the colors, sizes, fonts, and positions of everything on the page.
+ 2
CSS (or cascading style sheets) is used to style html pages, e.g. changing colours. It's what makes webpages look good and is an essential tool if you want to get into web development.