Chapter One
HTML Fundamentals
Just as a recap, we'll be talking about how CSS applies to HTML a lot, so make sure you're familiar with what everything is referring to in HTML.
Tag - element name (example:
a)Attribute - HTML modifiers (example:
href)Value - value applied to an attribute (example:
http://tania.dev)Element - everything within the HTML tag - attributes, values, and content.
Example:
<tag attribute="value">element contents</tag>A real example:
<a href="http://tania.dev">Tania's WebRing</a>This will link to my awesome WebRing.
Last updated
Was this helpful?