Resources
helping you along the way
Knowledge is the foundation of all wisdom...
Resources >> Web workshops >> Raw HTML page
Basic HTML you need for every page.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h1> </h1>
<p> </p>
<ol>
<li> </li>
</ol>
<ul>
<li> </li>
</ul>
<div> </div>
<a href=""> </a>
<img src="">
</body>
</html>
