html basic structure

HTML
<!DOCTYPE html>
<head>
	<!-- Miscellaneous Stuff Here -->
</head>
<body>
	<!-- Main Divs here -->
</body><!DOCTYPE html>
'Inserts the DTDs'<!DOCTYPE html>
<html>
  
  <head>
  	<title>Some Title</title>
    <link href="css_file.css" rel="stylesheet"> <!-- external CSS -->
  </head>
  
  <body>
    <!-- main content -->
  </body>
  
</html>
  <!DOCTYPE html>
<html>
<head>
	<title>PUT A TITLE HERE</title>
</head>
<body>
	<canvas id="canvas" width="200" height = "200"></canvas>

	<script type="text/javascript">
		//put your code here
	</script>
</body>
</html>
Source

Also in HTML: