CSS-Lesson 3- Your first stylesheet
This lessons teaches the two best ways to add styles to your pages, within document styles and external styles.
Internal styles are easy, you just write two style tags within the header of your page and your off. Look at the example below.
<style>
</style>
Next is external codes, for this you need two documents your index page and your css page. First onto your css page write:
/*Styles for A Website*/
Then save that document should be saved as styles.css. Now all you have to do is put the two together. All you have to do is use the following code on your html page:
< link href="styles.css" rel="stylesheet">
Now all that is left to do is add your own style, to find out how go to the next lesson.
Lesson 2- Basic Syntax