<!-- Notes look like this and aren't visible to browsers -->

<!-- These are your declations. They state the language (in this case XHTML) and location of the document type definition (DTD). We will use both XHTML and HTML5 in this class.-->

<!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">

<head>

<!-- Meta information includes global instructions. They are placed in the head section. The instructions for this page include declation of character set, an instruction to Internet Explorer 9 to read the document as XML, and an instruction to browsers to reload the content each time the page is viewed so the reader always sees the recent version. -->

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" value="IE=9">
<meta http-equiv="Cache-Control" content="must-revalidate"/>
<meta http-equiv="Cache-Control" content="no-cache"/>

<!-- The line below tells the html to use a pre-defined style sheet to format the code.-->

<!-- link rel="stylesheet" type="text/css" href="basic.css"/ -->

<title>This is where the title goes</title>

</head>

<body>

</body>

</html>