my name is george phillips and i am a freelance web developer based in london

blog

Attaching an External Style Sheet

To add an external style sheet to a HTML page, just add the following to the <head> section of your page. After the <meta> and <title> tags.

<link rel="stylesheet" href="stylesheet.css" type="text/css" />

Change stylesheet.css to the name of your style sheet. Some people prefer to put CSS files in a separate folder to keep content and styling separate.

Leave a Reply