Cant find this html code....

Robbo

Suspended / Banned
Messages
3,962
Edit My Images
Yes
So far I only have a front page to my website while I work on the main bulk etc.

Struggling to find a code that when clicking 'enter' it will take you to that page.

e.g.

index.html is the main page by default of my domain space etc.

I want the code to go to 'Page1.html' when you click enter etc

any help?
 
He means don't have a "click to enter" when someone goes to your site they should be able to navigate their way around from the index page.

A website is not like a book, you don't need or want a front cover, you just want to be right in there from the start.
 
He means don't have a "click to enter" when someone goes to your site they should be able to navigate their way around from the index page.

A website is not like a book, you don't need or want a front cover, you just want to be right in there from the start.

ahhh ok get ya.

Think I need a big HTML for dummies :'(
 
Text link
<a href="your-page.html"> Link to page </a>

Image link
<a href="your-page.html"> <img src="images/yourimage.jpg" /></a>
 
Last edited:
You should also include the following tag on every page or Google may index your site and simply show "Under Maintenance" as your entry - not very good later on when your site is completed:

<meta name="robots" content="noindex, nofollow" />

This will stop the 'bots indexing your site until you want them to do so.

When your site is finished simply remove these tags.

And I would also bin the counter - definitely a no-no for a professional site.

Also xhtml does not allow capitals in tags - so <BR> should be re-written as <br />.

.
 
Last edited:
Back
Top