Nat 5 – HTML Template

HTML5 Blank Template

<!DOCTYPE html>
<html>
<head>
<title> </title>
<meta charset=”UTF-8″/>
</head>
<body>

</body>
</html>

We can use the blank template to create the structure for our pages.

  • <!DOCTYPE html> tells the browser that the document is HTML 5
  • The head tag is used to establish the pages header area, this is used to store scripts and styles
  • The website’s title is inserted within the title tag ( <title> </title> )
  • <meta charset=”UTF-8″/> tells the browser that the document is using ASCII
  • The contents of the website are placed within the body (<body> </body>)

Leave a Reply

Your email address will not be published. Required fields are marked *