HTML 5 – template

Below is a HTML 5 template that can be used to create a website. This type is document is used by web authoring software to give a consistent look to all of your pages.
The template below is very basic and gives a simple layout of
HEADING
IMAGE
LINKS
TEXT
Can you spot which HTML Element blocks do what?

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
  <title> TITLE </title>
  <meta charset=”UTF-8″/>
</head>
<body>
<h1>Page Heading</h1>
<img src=”image.file” />
<ul>
  <li><a href=”page1.html”>Page 1</a></li>
</ul>
<p>Paragraph text.</p>
</body>
</html>

Leave a Reply

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