Web Design/Learning Basic HTML and CSS

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

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

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>

This article is issued from Wikiversity - version of the Sunday, July 27, 2008. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.