There are two different methods of adding a style sheet to your webpage:

  • Embed the style sheet on your page
  • Link to an external style sheet.

To embed the style sheet in your page, all you need to do is copy everything between the <style> and </style> tags and insert it on your page between the <head> and </head> tags.

If you want to link to an external style sheet, you will first need to save the style sheet to the same directory your webpage is saved in. After saving, open your web editor and insert the following code between the <head> and </head> tags:

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

In place of "yourstylesheet.css," insert the name of your style sheet.