![]() Quick Guide - Part One |
Basic HTML stuff Alas, you must learn the basic skill of HTML to be an expert at it. A lot of webpage software takes care of the job easily, but the code for a link is rather simple. Let's say I have a section called "Lyrics." The address for it would be at: www.lyrics.com, now this is how I would type it up: <a href="http://www.lyrics.com">Lyrics</a> Greg's Tip: The more organized your html is the easier it is to picture you page. using comment tags <!--start section--> at the begining and end of sections can really help. <!--End--> Greg's Tip: When doing more than one
thing to a certain image.text, such as font size 3 and blinking. make sure you
"hug" the tags" Good: <FONT SIZE=3><BLINK>what you want to say.</BLINK></FONT> Make sure the <TITLE>page name</TITLE>
is inside the <HEAD></HEAD> tags: Creating anchors can be fun to look at, in addition, it adds the easiness of navigation to a site. Let's say you have something on the top of the page, your updates. Let's say you have a link that says, "Updates for Today." The HTML for that is "Updates." Now, your updates are actually in the middle of the page. Now, with the proper HTML coding program, or just NotePad, do the following: <a href="#Updates">Updates For Today</a> Then at the area you post the updates, you have the section called, "Updates for Today." <a name="Updates"> Updates for Today</a> Sounds complicated at first, but later on it'll become easier. Greg's Tip: Make sure you get the numbers for you
background & text colors right. just one number difference can change alot!
Heres a great site made by Proteus. the owner of "Slivers and Paper Cuts" Tables are great tools for helping out your page. And it's not the tables that you can see. Using the proper HTML programs, you can make them invisible and divide your page in a great way. However, if your going to use tables, make it colorful. If you have Internet Explorer, you can use ActiveX by adding this to your page, which is normally under the header, and before <body>: < style>< !-- A:hover {color: #800000} -->< /style>< /head>Frames Sorry, your page can't view the frames version of this page.
Here (link) is a non <BASE TARGET="target name"> <A HREF="url" target="_top"> Besides Frames There are other ways to divide your page up. Right now we'll discuss tables, and then later when I collect enough information, I'll talk about image maps. Tables usually require some sort of HTML Editor, like Microsoft Frontpage. Most pages have their tables invisible, but you can show them off a little bit if you have a short menu. Coming soon, Image Maps and Your Own Personal Style... |