1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

General Help With Editing Template

Discussion in 'General' started by Kayem, Mar 29, 2010.

  1. Kayem

    Kayem New Member

    Hi,

    Downloaded 'My Family Template' on page 4 from Free Website Templates, and can't find some images, header.jpg and myfamily.jpg. Also how do I make additional pages and links.

    This is my first attempt downloading and trying to make this template work for me.

    Thank you in advance.
     
  2. sobitech

    sobitech New Member

    Hello. For additional pages and links, simply copy and paste index.html's content in a new text document and save as .html. Example: If I want to make a page called "About" i will save the text document as about.html -> Page is ready. Now for the linking part. By opening the .html file with Notepad for example, you view the intire source code. To make a link to the "About" page you must edit this part:
    <li><a href="http://www.freewebsitetemplates.com">Home</a></li>
    <li><a href="http://www.freewebsitetemplates.com">About us</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Services</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Family care</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Photo gallery</a></li>
    <li><a href="http://www.freewebsitetemplates.com">Contact us</a></li>
    You just simpy replace "http://www.freewebsitetemplates.com" with your page's name. For example: If I have created 3 pages called "About" "Information" and "Contact", here's how it should look like:
    <li><a href="index.html">Home</a></li>
    <li><a href="about.html">About</a></li>
    <li><a href="information.html">Information</a></li>
    <li><a href="contact.html">Contact</a></li>

    Note that you can shoose whatever names you decide. The page can be called milk and the .html file water, but as long as the linking is as it should, there won't be any problems. Goog Luck! :)