As Barry mentioned, there are many helpful documents you can access if you want to know more about HyperText Markup Language, or HTML. HTML tags are easy to understand. Most of them specify the beginning and the end of a block of text, and the block takes a different shape or provides a link to another document/file when viewed by a browser such as Netscape Navigator. The Netscape Navigator (or any other web browser) "decodes" the document written in HTML. In its native format, which is a simple text, contains a series of "tags".
After you construct the HTML document and proofread on a local computer (Windows-based PC or Mac), it can be sent to the medical school server via e-mail. The server recognizes that you have attached file(s) to the message and places the file(s) on a particular disk location. Once the process is completed, anyone with internet access and a web browser (like Netscape Navigator) can view your document with the browser if you provide the address.
There's a guide to all the different HTML "tags". However, many of us are not as patient as perhaps we should be, hence we look for "an easier way".
OK, for advancement of superior mode of communication, the following is a way to take some frustration out of writing HTML. There are HTML editors that add necessary tags for you upon your command, but it never hurts to understand how HTML works before you comit to one of the HTML editors. Some people say that using the HTML writers may be counter productive in the long run (or at least make the user less flexible and prone to errors that are difficult to debug). You'll probably venture out and explore the method with which you are most comfortable once you try this:
<title>My Incredible Home Page!</title>(Go ahead, highlight, copy, and paste onto your document...)
Then you should type:
<H1>Welcome to My Home Page</H1> My name is Drew Carey and I'm a comedian-turned-sitcom-actor.H1 is the biggest and H6 is the smallest header size.
<HR size=6>If you want a shorter horizontal line, specify the length by percentage like this:
<HR size=4 width=65%>The above tag would yield:
<The above tag would show "<" on the browser (trust me). If you want to place the ">" sign in your document and you want it to show up on the browser as "greater than" character, try typing:
>in your HTML document. If you want to show "&" on your browser, then you should type:
&Here are the rest of special characters. Of course, HTML editors make locating special characters easier.
<B>Bold Type</B>(Simple, isn't it?)
<I>Italics</I>
<em>Emphasis</em>
<BLINK>Blinking Text</BLINK>
<CENTER>A word, sentence, paragraph, or an image can be centered.</CENTER>
<center><b><i>An <font size=6>incredibly</font> ugly <blink>segment!</blink></i></b></center>How it's formatted is:
CENTER......................................................../CENTER
BOLD.............................................../BOLD
ITALIC................................../ITALIC
FONT..../FONT
BLINK..../BLINK
What you shouldn't do is:
CENTER........................../CENTER
BOLD.............................................../BOLD
ITALIC........................../ITALIC
etc., etc.
For example, it's not a good idea to write:
<center><b><i>An incredibly ugly <blink>segment!</blink></b>And this is what it looks like:
It becomes rather difficult to undo something like this because of crossing tags (instead of nesting). If you use combination of tags, remember that you "nest" but NOT cross them. The same principle applies to most other tags.
Then copy this:
Count in Japanese --- this text is outside of the tags <ol> <li>Ichii (one) <li>Nii (two) <li>San (three) <li>Shee (four) <li>Goh (five) </ol>A great thing about it is that Netscape automatically counts and "renumber" the list if you insert a line with a <li>.
On the other hand, if you want the list to look like this (bullets):
Things I want to do: <ul> <li>Go to the movies <li>Go to a party <li>Not study all the time </ul>Examples of nested lists are here...1, 2, 3. Click on them, then view the source and see how the tags are placed.
Check out <a href="http://www.great.site.com/pub/jdoe/welcome.htm">a friend of mine </a> on internet!The above would show up on your browser like this:
<a href="bio.htm">More about me</a>The above link, when clicked, will open up the file bio.htm in the same directory. If you created a subdirectory, place the subdirectory name then the file name separated by "/" ("subdir/bio.htm" instead of just the file name).
<IMG ALIGN=LEFT SRC="http://www.med.und.nodak.edu/misc/undsom.gif"> A nice new logo, don't you think? <br clear=left>Yields the following:
A nice new logo, don't you think?
<!-- Start of pathology links -->
<form method=POST action=/mail>You can have radio and check buttons, also. Here's additional help to learn how to add more functionality to your pages.
<input type=hidden name="Mail-To" value="yourname@mail.med.und.nodak.edu">
<input type=hidden name="Mail-Subject" value="Whatever">
Your name:<br><input name="From"><p>
Your Internet address: (if you would like a reply)<br><input name="Mail-From"><p>
Your comment:<br>
<textarea name="Comment" rows=3 cols=50></textarea><p>
<input type="submit" value="Send Comment"> <input type="reset" value="Clear Fields">
<input type=hidden name="Mail-Response" Value="Thanks for your comment.">
</form>
When you are done, it should look like this:
<html> <head> <title>...</title> </head> <body> ...lots and lots of lines you created... </body> </html>
Contact him by e-mail: tsuchiya@badlands.nodak.edu