Question/Answer ~~ Beginning/End of an HTML Document |
Question: First off, what in the world does HTML stand for? What's it supposed to mean? |
Answer: HTML is an acronym for the words Hyper Text Mark-Up Language. HTML is the basic construction code for web sites. A web browser (for example: Internet Explorer, Netscape, etc.) reads this code, and uses it to display a web site. |
Back to Top |
Question: Is there any specific program I've gotta have to do this HTML stuff? What do you use to make your web sites? |
Answer: Actually, there's not really a specific program you just *have* to have to write HTML. Basically, you're gonna need a text editor that enables you to write code continuously (in other words, a word processor that doesn't use margins). I think the most common "offline" program to write HTML is good 'ole Notepad. This is in fact what I used to create this site, and many of my other sites as well. |
Back to Top |
Question: All right...I decided to make my page in notepad, and I saved it etc. but it keeps showing up as a text document and not my page! What's the deal here? Did I do somethin' wrong? |
Answer: In order for your web site to show up as your web site, you need to add .html to the end of your file name. Since Notepad is essentially a text editor, it's going to save your files as text documents by default. *So*, here's whacha do to fix this little problem:
|
Back to Top |
Question: Okay, now I have my page all build and everything, but how do I view it. I wanna see what it's really gonna look like on the web. |
Answer: Sure thing! What you do is open up your web browser. There's no need to even connect to the internet for this, since your page is on your hard drive right now. So, all you do once your browser is opened, is click on File, then Open. You'll then want to find your page, and then just click open in that dialogue window that's on your screen. Your page should show up just like it would on the web! |
Back to Top |
Beginning and Ending an HTML Document: |
One of the most important things to learn in the beginning is the start and end of an HTML document. These things are required for a page to function properly. Take a look at the coding below, and I'll decipher it all for ya in a minute... |
The Beginning: <HTML> <HEAD> <TITLE>Page Title Goes Here</TITLE> </HEAD> <BODY BGCOLOR="Pick a color" TEXT="Color" LINK="Color" ALINK="Color" VLINK="Color"> The End: </BODY> </HTML> |
Back to Top |
The Above in Plain English: |
All righty then...let's break this down a bit, and I'll kinda explain what each of the tags above mean. Then maybe you'll be able to understand it all a bit more... |
<HTML>: This kicks off the whole HTML document. It tells the browser, that the document is a web site document. |
<HEAD>: The Head of the HTML document is the start of another sub part of the page. This is mainly the place where the Title of the page is listed. |
<TITLE> </TITLE>: Pretty self explanatory. This is where the Title of the HTML document is written. This is what is displayed on the *very* top title bar of the browser. If you'll look up on that same colored line that the minimize, maximize, and close buttons are, you'll notice that to the left it displays the title of the page. What you type between the <TITLE> </TITLE> tags is what is displayed up there. Make sure not to forget the </TITLE> tag. It can cause some pretty weird things to happen to your page if you forget that one little thing. |
</HEAD>: This ends the Head of the HTML document. Just like the </TITLE> tag, don't forget it! |
<BODY>: The <BODY> tag starts off, well, the Body of the HTML document. This is where the majority of your code will be written. All your text, etc. will also be typed under this tag. The sub parts of this code is where you will define some colors. BGCOLOR is the Background color of the document, TEXT is the color of text, LINK is the color that your links will be, ALINK is the color of an active link (meaning it's being clicked), and finally VLINK is the color of a visited link. Any color can be put into these spots. |
</BODY>: Ends the Body of the HTML document. All your codings and text should be typed *above* this tag. |
</HTML>: Ends the entire HTML document. This should be the last line of code you type. |
Back to Top |
And there ya have it! If you have questions about anything above, I'm available any time at abanc@brightok.net. Just give me a holler! |