![]() |
|
|
Windows3.1 | Windows95 | Windows98 | WindowsME | Macintosh | E-Mail Us |
|
|
Macintosh HTML A Guide to Beginning your own homepage. FETCH How do I set up FETCH to upload my own home page ? Why does FETCH tell me that my login has failed ? Why does my Macintosh keep adding file extensions to things I am uploading ? Where can I find some more information on Fetch ? NETSCAPE HELP Why do I get system freezes or memory from Netscape ? Where can I find more information on Netscape ? MODEM HELP How can I improve my connections ? ( Non-56k Modems ) How can I improve my connections ? ( 56k Modems Only ) GENERAL QUESTIONS Where can I download Microsoft Internet Explorer for my Mac ? Where can I find lots of general Mac info ? Where can I find the official Apple support site ?
|
HTML
Here is an example of the first few lines you would make if you were making a homepage: <HTML> <TITLE> Your Homepage </TITLE> The next thing you need to know are the different grades of text size. H1 is the largest, with H6 being only a small amount larger than regular text. The different sizes of text are: H1, H2, H3, H4, H5, and H6.
Usually, for the first text of your page you would use H1 text Probably, the next thing you'll want to know is how to put images on your page. Images must be either .gif or .jpg files. Here is how you would put an image into your page: <IMG SRC="image.gif"> This would get the following result:
You can center images by using the following command: <CENTER> <IMG SRC="image.gif"></CENTER> This would get the following result:
How to make a counter on your page: For example, here is how you would make a link to the NeoBright.Net Support Page: <A HREF="http://support.neobright.net"> The NeoBright Net Tech Support Page! </A> It would come out like this: The Bright.Net Tech Support Page! You can also make images a link instead of text! Here's How you would do it: <A HREF="http://www.yahoo.com"> <IMG SRC="fencing.gif"> </A>
How to make a line: To make a line you just use this command line: <HR> It would come out like this: How to make an E-Mail link on your page: This is the command line you would use: <A HREF="mailto:username@bright.net"> Mail Me! </A> Where it says username you should substitute your username in that part.
|