Instructions
Part 1: Create a Template
Code the Structural Elements
Each Web page should contain a set of structural elements. These elements, commonly called “tags”, set up a Web page as a container of content to be displayed. These structural tags also divide a webpage into sections that the browser reads. You will code the main structural tags in the order shown.
Type this into a blank page in Notepad:
The next step is to create a logical layout within your Web page using semantic tags. Browsers, screen readers, and search engine robots easily read semantic tags because the name of the tag describes what the tag is or does. For example:
tags designate the page footer section. You can format these tags using CSS formatting. However, you will use them strictly for organization at this point.
Place your cursor between and and type the code below:
Once the correct code for your layout is typed into Notepad, you will save your template using the following steps:Click the File tab in the top left corner of Notepad.
Type template.html into the text field.Select “All Files” from the drop menu below the text field.
Part 2: Create Your Home Page:
Place your cursor after
. Add a level 1 (h1) page heading using
and
and type heading text for the page.For example:
Welcome to Joe’s Grill
Place your cursor between
Select Save As from the drop menu.
Part 3: Upload Your Home Page: