tutorial 4: introduction to CSS

watch it on YouTube

New Tag Covered

<style></style>
this tag is placed in the head of an HTML file and it signals the start of CSS coding that will apply within the HTML page. All CSS code should be within the style section.

New Attributes Covered

font-family:
this attribute can be used with HTML containers that can have text content (page body, headings, paragraphs, etc.). Acceptable values are font names. The most basic are serif and sans-serif.
color:
this attribute can be used with HTML containers that can have text content. It sets the font color within the tag Acceptable values are hexadecimal color values or recognized color name values.

Resources