No funny alt tags here. This is all business.Mark this page!
   

How do I add styles to my page with an external CSS file?


CSS or Cascading Style Sheets are a great way to control the look of your content, and linking to a single external .css file brings uniformity to all the pages on your site.

add the tag

<link href="YOUR STYLE SHEET.css" rel="stylesheet" type="text.css" />
to the head section of your HTML file. This will apply all of the styles in that CSS file to the content of your page. You can link to the same CSS file from multiple pages.

For more information on CSS formatting, check the More resources page.