The following is a HTML5 Template. It is the same as HTML 4 except for the DOCTYPE tag that tells the browswer it's HTML5 and not HTML 4

<!DOCTYPE html>
<html>
<head>
<title> Page Title here </title>
<style>

CSS Code can go here

</style>
</head>
<body>

Your HTML content here

</body>
</html>

Start saving HTML5 documents as "*.html"

All the content still goes inside the body tag but the main change is all the styling of the page goes inside the style tag located inside the head tag or in a seperate file or inline: This is called CSS. Some key things that aren't supported by HTML5 any more are the font tag and the frameset tag. Content of the page is this text you are reading or any images you see or any links you can click ... Style is how you want your content to look on your page: color, size, font-family, page layout ...

This is just a get started with HTML5 tutorial, so if you are taking CS1: Intro to JavaScript, you can put your JavaScript in up to date HTML5 webpages. If you are taking Web Design 2, I will be giving you links to other tutorials for learning HTML5 and CSS.