Working with Cascading Style Sheets
There are actually four methods you can use to add styles to your page,
each with its own benefits:
- Embed a stylesheet within the HTML document.
- Link to an external stylesheet from the HTML document.
- Import an external stylesheet into the HTML document.
- Add styles inline in the HTML document.
These 2 pages are absolutely identical, except for just 1 character.
That's the power of external stylesheets!
Back