
Greetings....
| Attention! By writing this I am in no way suggesting I have any friggin' idea what I'm doing. I'm merely passing on the limited (and flawed) knowledge that I have picked up over time. There is much I don't know. If you see anything you know is wrong here please send me an email. I don't like putting material up on my page that isn't correct. |
as of Mar. 27, '02!<html> <head> <title> Welcome to my page </title> <script language="Javascript"> <!-- defaultStatus="Thank you for visiting!" // --> </script> </head> <body background="greenbkg.jpg" bgcolor="blue" link="#ffffff" vlink="48e1ff" alink="00ff00"> <object> <embed src="closing-time.mid" hidden="true" autostart="true" nosave="true" loop="true"> </object> <center> <img src="bluflame.gif" width="30" height="55" alt="flame"> </center> Welcome to the wonderful world that is my webpage... have a seat, have a drink, then don't let the door hit you on your way out. </body> </html>
Things you must always keep in mind are:
STATUS BAR:
For scrolling statusbar, go HERE
as of Mar. 27, '02!
Now, this really is easy enough to do. All that is required is that you write out a tiny little
script for it within the <head>, </head> tags. This is:
<script language="javascript">
<!--
defaultstatus="You'd be surprised how many people never learn to write down here...it's easy."
// -->
</script>
Now what's all that mean you say? Well, in most browsers there is a built-in language called Javascript, nearly all of
your really fancy webpage features are done with this language. With the first line of code,
If you see something you'd like to learn to do on someone else's page, view the source! To do this you just right click, go down to 'view source' and
click. You'll get a new browser window that will show exactly how they wrote their page. Javascript is almost always at the top. Want to copy it? Simple!
Highlight the parts you want (you'll notice if you right click 'copy' is not an option), then push ctrl C. This will copy it then you can paste it directly
into your html text without worrying about whether you copied it exactly. .
Another way to indent is to put a <pre></pre> in front of whatever it is you want to indent, like I did in front of this paragraph. Just put as many spaces between the <pre> and </pre> as you'd like the paragraph to be indented. There is one major draw back to this of course...it isn't recognized by Netscape. However if you're just catering to the IE users it's a handy trick.
<p align="center"> Hello, this paragraph is aligned to the center.</p>
<p align="left"> This paragraph is aligned to the left.</p>
<p align="right"> Hi, this is a paragraph aligned to the right. Everything you write in here will be shoved over to the right hand side and line up there, though this makes the rest of it look rather messy. I've never had any use for this command myself. </p>
<p align="left"> This paragraph is aligned to the left, again, a stupid command function. Words are naturally aligned left so why would you need to tell it to do that? Ya got me, but it's still a command if you want to use it. As far as I'm concerned it's just an awful waste of time though.</p>

Remember, there is NO <img src="picture-name.jpg" width="235" height="300" align="center"> command for pictures. You just put
Back to top
HEIGHT AND WIDTH ATTRIBUTES:
|
<li> Bullet two <li> Bullet three </ul> | |
|
<li> Bullet two <ul><li>another bullet <ul><li>yet another bullet</ul> <li> Bullet three</ul> <li> Bullet Four </ul> |
|
<ol><b>My ordered list</b><br><br>
<li> Two <li> Three </ol> | |
|
<ol type=I><b>My ordered list</b><br><br>
<li> Two <li> Three </ol> |
|
|
<ol type=i><b>My ordered list</b><br><br>
<li> Two <li> Three </ol> |
|
|
<ol type=A><b>My ordered list</b><br><br>
<li> Two <li> Three </ol> |
|
|
<ol type=a><b>My ordered list</b><br><br>
<li> Two <li> Three </ol> |
|
|
<ol><b>Changing the number type</b><br><br>
<li type=A> the way <li type=I> the series occurs <li type=a> in the list. </ol> |
|
|
<li> or even continue on and on and on (skip to number 12) <li value=12> Ha!! I've jumped numbers <li> and now am continuing on again... </ol> |
To make a link you only need to have two things: Once you have these two things you can begin. First you put the url in the tag used for links, which is <a href="">. If I were linking to my webpage I would write: |
|
<a href="http://www2.localaccess.com/darkwolf">Darkwolf's lair</a> |
|
Tables are best learned by listing the properties first, then showing how to use them...at least that's what I think. To start out with you have the ordinary <table> tag, to which you add the various attributes you desire. Within the 'table' brackets you can put:
|
| Whatever...blah blah blah | something something something | |
| More stuff | Still more stuff | Aaaaand I think I'm done. |
|
<center>
<table border=8 align="center" bordercolor="green" cellspacing=3 cellpadding=6 background="cupid-l.gif"> <caption align="top"><font color="white">Just a little caption</font></caption> <tr> <td colspan=2> <font color="white">Whatever...blah blah blah</font> </td> <td> <font color="white">something something something</font> </td> </tr> <td> <font color="white"> More stuff</font> </td> <td> <font color="white"> Still more stuff</font> </td> <td> <font color="white"> Aaaaand I think I'm done.</font> </td> </table> </center> |
| This is a table... |
|
What's so impressive about that you say? I mean come on, it looks the same as ordinary text. Well that is true, when you leave it aligned to the left, and if you put it in a table just for that it would be an awful waste of time.
However, it's with tables that you can center, and align things to the right, without messing up the way the text looks. You know what I mean, when you end up with two words at the end of a paragraph all by themselves that are centered
and just look stupid. And aligning text to the right never looks nice...unless you use a table. This, by the way, is in a table also. Aligned to the right. You can align a table either to the left, right, or center by putting 'align="left"'
in the table brackets. eg: <table border=0 cellpading=0 cellspacing=0 align="right"> There is one major problem to aligning tables though, you'll have to put a lot of <br>s after them, to stop them from running over top of the other material on your page. |
| Perhaps the most useful text use for tables is that fact it allows you to do columns, otherwise it's basically impossible. | With a table though you can have as many columns as you'd like, and then align them to the center, left, or right, by putting 'align="left"' in the table brackets as we have been doing. Whenever I'm aligning a table to the center I put the <center> tag before the table tag, then the closing </center> after </table>. This way I don't have to worry about whether it will run over other material on my page. Go see the correction on aligning tables to the center. |
Text Aligning Table Example Code
<tr> <td width=25 valign="top"> <font color="green"><b> Perhaps the most useful text related use for tables is that they allow you to do columns, otherwise it's basically impossible. Setting the cellpadding property high gives you space between the columns. </b></font> </td> <td width=250> <font color="green"><b> With a table though you can have as many columns as you'd like, and then align them to the center, left, or right, by putting 'align="left"' in the table brackets as we have been doing. Whenever I'm aligning a table to the center I put the <center> tag before the table tag, then the closing </center> after </table>. This way I don't have to worry about whether it will run over other material on my page. Go see </b></font> </td> </tr> </table> </center> MailtoOne thing most people end up putting on their pages are links that allow people to email them by clicking on a link, normally it's a cute picture of a letter or something like that. To do this you merely have to write:
This is a fairly new function of browsers and many people can't use it. So, to be polite (you want to get all those glowing compliments don't you?) tell them your email addy!! If you include it in the alt name that should be good enough. You've done your duty as far as I'm concerned. INDEX |
|
|
|
|