+ 2
What is CSS?
What is CSS and what does it have to do with HTML?
4 Answers
+ 6
to be honest CSS just cleared up the mess that you can find yourself into if your inline all your styles, think about it, if you need to change a particular style in your inline HTML you'd have to go through a bunch of HTML, CSS abstracts that and makes a central location for you to structure all your styling aspects.
+ 5
HTML, HyperText Markup Language, gives content structure and meaning by defining that content as, for example, headings, paragraphs, or images. CSS, or Cascading Style Sheets, is a presentation language created to style the appearance of contentâusing, for example, fonts or colors.
+ 5
plus you can do overall changes to tags such as yours paragraphs, classes etc in on single block of code instead of individually doing so for tag
+ 1
Thanks!