HTML CODE:
ResultIntroduction
Classes and IDs in CSS
Classes and IDs are super easy in CSS. You're using them right now!
Regular HTML Selectors
If you don't bother with a class or ID, an HTML element just gets the regular CSS styling for that element—or the default styling if you don't specify any particular styling on the stylesheet.
CSS CODE:
.standout {
color:#F7AC5F;
font-family:Verdana;
}
#intro {
color:B83C3A;
}