Free Tips & Easy "How to" Instructions
When looking at the last saved progress, there is obviously room for improvement.
For example, there is a bit too much space between the h1 header and the horizontal rule:

It could also use a bit color, and enlarging the font size for the header might also make it look better.
We can easily change all that by adding a class for the already existing h1 element. Since the element already exists, there is no need for the period in front of the class, so it would look like this:
h1 {
}
Now let's make those links in the menu look a bit more real. Placeholder titles and links are replaced, as follows:
The default home page should always be called index.html. The page extension can vary (.html, .php, .asp, etc.), but the name is always index.
The other pages in the menu can be named according to your website contents, but it is recommendable to always give the same or similar titles and page names, except for the index.html.
That's why the second page is called About and the link is called about.html
The third page is Projects and the link to it, or the file name, is called projects.html
If your page titles consists of more than one word, you can apply the same method, but remember these 3 important rules:
After saving your document, it should look like this, or similar, depending on what exactly you named your pages.
In order to have all the 5 pages, you can simply resave the index.html as the other 4 files, but before you do that, there is one more thing that has to be done.
Select the complete code located between the opening <style type="text/css"> and the closing </style> tags, copy it, and then paste it into a blank notepad file. Save it as styles.css and put it in your css folder. The opening and closing style tags should not be part of the style.css file.
Now remove the entire style sheet, including the opening and closing tags, from the page head of index.html. That is this portion of code (all of it):
All the declarations in the style sheet are still needed and will be used, but we are going to apply the external css file instead. From now on, if you need to make any changes to the style sheet, you only need to alter the one file, called styles.css, and it will affect the entire website.
In place of the code you just deleted, place this instead:
<link rel="stylesheet" type="text/css" href="css/styles.css" />
Your <head> to </head> code should now look like this:
Your index.html is now ready to be duplicated and re-saved as "about.html", "projects.html", and so on. Then you can edit the contents of each of those files by replacing the Lorem Ipsum text with your own text and perhaps photos.
The sample website is ready: Preview 10
Advertise your website, business or product page on the "How to Make a Website, Part 3" page and help support the free tips website!
Most things are not as complicated as they seem. Knowledge is power. Get valuable tech tips to master your computer & the internet.