Table of contents for Learn how to create a website series
Below is the complete list of entries to this series.- Learn how to create a website using a Template
- Understanding the Basic Structure of a Website
- Choosing a template for your website
- Editing the CSS Template to Make a Website
Getting ready to edit your template to make a website
In this part of our series you will start editing your template to make your website. Don’t worry, I’ll guide you every step of the way so you don’t get lost.
What do you need?
- The BigSpaceLove template found on Free-CSS-Templates
- A browser to open your website. (e.g. Internet Explorer, Firefox…)
- A text editor to edit your website. Preferably one that supports syntax highlighting. Programmer’s Notepad is free and is what I’ll be using.
Start editing the template
Open up index.html using your text editor. If you remember the basic structure of a website we taught you can notice that it is the same way the html file is structured.
- The header contains “Website Title” and “Subheader, website description H2″ in this case
- The body is separated into a left section containing the content the and a right section containing the menu.
- The footer contains information about the person who created the template.
You will notice these sections are denoted with the following tag in the HTML document:
The <div> </div> tag
You can think of the div tag as a section within your HTML document. They will usually be named after the sections described above.

Read more »



