Help Desk For Creating a Web Page
Step one : Copy and Paste.
Once you know this, you are
half way there!
To do this there are many ways.
Copy the WHOLE page :
Go to top of page, EDIT and click
Click: SELECT ALL
Click: COPY
Open the page where you want the data.
Click: EDIT
Click: SELECT ALL
Click: PASTE
OR:
Highlight data with left click on your mouse, by holding down the button as you go over the data you what to copy; (some will use right click, depending on how your mouse is set up)
Right click: COPY
Open the page where you want to place the data.
Highlight the data you want to replace or place the curser where you want to add the data.
Right click: PASTE
Once you have COPY and PASTE down pat, half the battle of creating a web page on your own is over.
Basic codes
Download Template to copy and paste
Once you have an open code, you MUST have a closed code!
The FIRST part of a page has the opening codes and title:
< html>
< head>
< title>Web Page Building
< META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
< meta name="description" CONTENT="how to make web pages">
< meta name="keywords" CONTENT="html,web pages">
< META NAME="revisit-after" CONTENT="3 days">< /HEAD>
There is a space after ALL the LEFT ARROW symbols on this page, after you copy it, remove the space!
SECOND comes your BODY
The menu below has two pages that may help you. A color cube and web page colors.
< body BGCOLOR="#F08080" TEXT="black" LINK="red" VLINK="yellow" bodybg="fixed">
< BODY>
You can use any colors you want by name or by their code.
If you use their code name you must use the # with it.
If you use a picture background:
< body background="http://www.geocities.com/helpdesk57/star.gif" BGCOLOR="#000000" TEXT="#ffd700" LINK="#ffd700" VLINK="#ffd700" bodybg="fixed">
If your pictures are in a sub-directory (which is best ) then the code would be the name of your subdirectory/name of picture.
Example, if you sub-directory is called pic, then your code would look like this:
< body background="http://www.geocities.com/helpdesk57/pic/star.gif" BGCOLOR="#000000" TEXT="#ffd700" LINK="#ffd700" VLINK="#ffd700" bodybg="fixed">
Make sure you upload all of your pictures and graphics and type in your picture name and extension!
You may add more than one type, in case the person viewing the page does not have the first one listed. This font code will be closed at the ending codes.
Or you can use: < font size=”1”>
To close this font size: < /font>
< font size="5">
< font size="-1">
See the menu for more examples of sizes.
Just remember the text size you set it at , has to be closed!
If you whole document is one size, then you can open it at the beginning then close at the end of your last sentence.
to close is < /font>
Example of the codes together : < h3>< font color=red>Is this easy so far?< /h3>< /font>< P>
or if in subdirectory called pics:
< img src="http://www.geocities.com/helpdesk57/pics/yourpicture.gif">
Some pictures are JPG. Format, just subsitute the format.
If your sounds are in a subdirectory, add: < bgsound src="http://www.geocities.com/helpdesk57/wave/title.wav" loop="1">< P>
To close this, < /center>
or open new window: < a href="http://www.geocities.com/admiralmaggie/index.html" target="newbrowserwindow">United We Stand< /a>< p>
This menu has a GO button, which you can have it read anything you want and add as many pages as you need. It will be on all of your pages, so when you add another page to your site, make sure you add it in the menu too!
< br>
< br>
< center>
< form>
< select name="list">
< option value="http://www.your-homepage-addy>HOME
< option value="http://www.geocities.com/helpdesk57/page1.html"> Name of your page 1
< option value="http://www.geocities.com/helpdesk57/page2.html"> Name of your page 2
< option value="http://www.geocities.com/helpdesk57/page3.html"> Name of your page 3
< option value="http://www.geocities.com/helpdesk57/page4.html"> Name of your page 4
< option value="http://www.geocities.com/helpdesk57/page5.html">Name of your page 5
< /select>
< input type=button value="Go To"
onclick="top.location.href=this.form.list.options[this.form.list.selectedIndex].value">
< /form>
< /center>
< p>
< /body>
< /html>
< noscript>
If you take the codes from this page, close the gap after the left arrow keys in green.
You can also view source from this page or any other pages you come across if you see something you’d like, right click and view source, highlight the desired information, copy and paste to any word program.
Start yourself a script file and keep them together.
ALWAYS BACKUP your HTML PAGES to a word document.
PROOFREAD your work or have others check it out!
So if you mess up, you will have a copy to fall back on.
UPDATE it EVERYTIME you are satisfied with your work.
