|
The home page editor provides you with a simple way to edit and upload files to help you build your home pages. You can have multiple pages and images.
The index.html is a the default file that is loaded when someone visits your home page. This file can also be called index.htm or index.asp, but we recommend using index.html. When you use the Home Page Editor, your index file will beloaded into the Edit Window. Here is a sample index.html file:
<html>
<head>
<title>My Home Page!</title>
<meta name="robots" content="index,nofollow">
<meta name="keywords" content="key words for my site">
<meta name="description" content="a description of my site">
</head>
<body>
<h1>My Home Page</h1>
<p>Welcome to my home page</p>
<h2>Pictures</h1>
<p>To link to a picture, make sure you have the correct path set. Here's an example:</p>
<img src="/images/mypicture.jpg">
<h2>Page links</h2>
<p>Other pages can be linked to from the <b>index.html</b> page by using a simple link. Here's an example:</p>
<a href="page2.html">A link to page 2</a>
</body>
</html>
|
Step by Step Instructions:
- To edit your home page, first you need to be logged in to your account.
- On the menu bar, select "Hosting->Home Page Editor".
- To edit your index page, use the edit window (the big white window) to update the text of your index file.
- Save the changes when you're done.
|