<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<title>What is a Style?</title>

<!-- Note that the link tag is also in the head but outside the style block -->
<link href="main.css" rel="stylesheet" type="text/css" />

<style type="text/css">
<!-- 
  @import url(anotherpage.htm);    /* If imports are used the MUST be 
                                      FIRST in style definition         */
  
  li {text-decoration:none;}
  
-->
</style>

</head>

<body>