+ 1
what does css use? (html=tags)
2 Answers
+ 1
CSS uses rules:
h1 {color:red;}
'h1' is a selector. It could be an HTML element, class or id.
{color:red;} is a declaration.
'color' is a property.
'red' is a value.
0
You can use CSS in html with stylesheet.