When should the value for CSS 'font-family' have quotes around it?
I've seen both font-family: arial
and font-family: "arial"
.
As a specific example, I declare a font this way:
@font-face {
font-family: 'entypo';
font-style: normal;
font-weight: 400;
src: url('/css/fonts/entypo.woff') format('woff');
}
What would be the correct CSS to have an element use this font-family?