Welcome to my HTML help page. The purpose of this page is for me to help anyone out there who wants to know more about how to use html. I guess that's it!Text Basics:
To center your text, use this code: <center> TEXT HERE </center>
It will look like this:Hey check it out!
To change your font, use this code: <font face="FONT NAME"> TEXT HERE </font>
These are some fonts: Helvetica, Times New Roman, Courier, Andale Mono, Arial, Arial Black, Comic Sans MS, Georgia, Impact, Trebuchet MS, Verdana, and Webdings (Webdings).
To change your font color, use this code: <font color="COLOR"> TEXT HERE</font>
Here are some font colors: Yellow, blue, purple, green, pink and red.Link Basics:
To make a link, use this code: <a href="ADDRESS">TEXT</a>
This code: <a href="http://www.geocities.com/SilverMoonNursery/index.html"> Click here to go to Silver Moon Nursery!</a>
Looks like this: Click here to go to Silver Moon Nursery! (except without the mouseover and color change effects)
To link an image to a site use this code: <a href="SITE ADDRESS"><img src="IMAGE URL"></a>
An image URL is the address of your image. Whenever you upload an image to your website, the image is given a URL such as http://www.YOURSERVER.com/YOURSITE/files/FILENAME.gif. Without this URL, images cannot be linked (as far as I know) to a site.Frames Codes:
Basic Frames:
<html>
<head>
<title>My Page</title>
</head>
<frameset cols=20%,80%>
<frame src="left.html" name="leftside">
<frame src="right.html" name="rightside">
</frameset>
<body>
</body>
<noframes>
<a href="your main page .html">Click Here</a>
</noframes>
</html>
Example:
To make linkz appear in the main frame (right-hand frame) use this code: <a href="http://your_link" target="rightside">click here</a>
One top frame, a left frame, and a main frame:
<html>
<head>
<title>My Page</title>
</head>
<frameset rows="100,*">
<frame src="top.html" NAME="top">
<frameset cols="160,*">
<frame src="left.html" NAME="left">
<frame src="right.html" NAME="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>
Example:
To make linkz appear in the main frame (right-hand frame) use this code: <a href="http://your_link" target="right">click here</a>
One top frame and one main frame:
<html>
<head>
<title>My Page</title>
</head>
<frameset rows=20%,80%>
<frame src="top.html" name="top">
<frame src="bottom.html" name="bottom">
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>Example:
To make linkz appear in the main frame (bottom frame) use this code: <a href="http://your_link" target="bottom">click here</a>![]()
© 2000 by Ashley Williams for Silver Moon Nursery, including all graphics unless otherwise stated.