CSS has no tags, it has selectors, properties, and values, grouped in rules:
Code:
/* this is a comment and the line below is a CSS rule */
selector {property: value;}
The simplest selectors are element selectors. The selector
h1 applies to all
<h1> elements in the HTML document:
And if multiple element types should get a similar style, CSS selectors can be separated by commas:
h1, p {color: red;} applies to all
<h1> and
<p> elements in the document.
So, in conclusion, what you posted above are all element selectors that apply to their respective HTML counterparts (in this case it’s mostly the new HTML 5 elements), like
<article>,
<aside>,
<audio>, etc.
These quotes, however, are invalid and should not be there. But it might be that you’ve just put them there by accident.