Creating a Site Map???

Domenico

Member
Messages
117
Reaction score
0
Points
16
-A site map for bots-
  1. Make a robots.txt file in the main directory.
  2. Put a link to your site map on it in this context:
    Sitemap: http://www.YourSiteURL.com/sitemap.xml
  3. Make a sitemap.xml file.
  4. Put links to all your pages in the xml file in this context:
    <?xml version="1.0" encoding="UTF-8"?>
    <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
    <loc>http://www.YourSiteURL.com/page1.html</loc>
    </url>
    <url>
    <loc>http://www.YourSiteURL.com/page2.html</loc>
    </url>
    <url>
    <loc>http://www.YourSiteURL.com/yo/page3.html</loc>
    </url>
    </urlset>

-A site map for people-
Make a page with a bunch of links to all your pages.
 
Last edited:

Rufus65

New Member
Messages
16
Reaction score
0
Points
0
Okay thanks for all your help, now onto another question. How do i create a non-moving background. Like when you scroll down a website the background image doesn't move?...Also how do you make a proper form like what you would see on a [contact us] page?...
 

TheMan177

New Member
Messages
179
Reaction score
0
Points
0
Okay thanks for all your help, now onto another question. How do i create a non-moving background. Like when you scroll down a website the background image doesn't move?
You can use:
Code:
background-attachment: fixed;

...Also how do you make a proper form like what you would see on a [contact us] page?...
What do you mean by a 'proper' form? A 'contact us' type of form that sends an email or something?
 
Last edited:

Rufus65

New Member
Messages
16
Reaction score
0
Points
0
i meant an e-mail when i said [proper form] sorry for the confusion yes....

and for the background code, where do i put that piece of code? Is there a specific spot for it?
 
Last edited:

TheMan177

New Member
Messages
179
Reaction score
0
Points
0
i meant an e-mail when i said [proper form] sorry for the confusion yes....
The easiest way is to just run a google search for contact form tutorials, there'll be heaps of resources out there for you to use.

and for the background code, where do i put that piece of code? Is there a specific spot for it?
In your css file; something like:
Code:
body 
{ 
background-image: url(background.png); 
background-attachment: fixed;
}
 

Rufus65

New Member
Messages
16
Reaction score
0
Points
0
Thank you for your help i hope my site it up and running one of these days...:lol: :lockd:
 
Top