Web Design/Learning Basic HTML and CSS

<html> <head> <title>My CSS Webpage</title> <link type="text/css" rel="stylesheet" href="external.css"> </head> <body>

Web Design Learning Basic HTML and CSS
This page is part of the Web Design project.

Some heading

This is a webpage that uses an external stylesheet. The style is controlled from the file style.css.

This is an advantage because you can call this same CSS Style on many pages. When you want to edit the style for the whole website you just have to change code within the external.css file.

</body> </html>