<!-- CSS:Basics snippet 3. -->
<!-- Linking to external .css files that will contain your styles. -->
<!-- The cascading rule dictates that the second stylesheet takes precedence. -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- Code source: http://www.justfigures.co.uk/ -->
<!-- A resource for web developers using XHTML, CSS, JavaScript, PHP -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>View snippet page</title>
<!-- By using the 'link' element. -->
<!-- Place in the head of every page that requires the .css file. -->
<link href="myStyleSheet.css" rel="stylesheet" type="text/css" />
<link href="myOtherStyleSheet.css" rel="stylesheet" type="text/css" />
<!-- Or importing stylesheets using the '@import' statement. -->
<!-- Place in the head of every page that requires the .css file. -->
<style type="text/css">
@import url("myStyleSheet.css");
@import url("myOtherStyleSheet.css");
</style>
</head>
<body>