If you order your custom term paper from our custom writing service you will receive a perfectly written assignment on html. What we need from you is to provide us with your detailed paper instructions for our experienced writers to follow all of your specific writing requirements. Specify your order details, state the exact number of pages required and our custom writing professionals will deliver the best quality html paper right on time.
Out staff of freelance writers includes over 120 experts proficient in html, therefore you can rest assured that your assignment will be handled by only top rated specialists. Order your html paper at affordable prices with cheap essay writing service!
What is HTML anyway? Well, HTML stands for Hyper Text Mark-up Language and is the secret code that is used to create the look and layout of all the documents on the web. Why do I call it the secret code? Because everything on this web page is the result hidden instructions, called tags, that tell the web browser how to display the text, the images, the color, and such. Moreover, the web browser doesnt display the tags on the web page...so, thats why I call it the secret code.
Sound confusing? It might help for you to see an example of what HTML looks like with all those tags.
Look up on the browser windows toolbar, go under View, then click on Page Source. In a matter of seconds you will see all the hidden HTML tags for displaying the text and images you see here on this page. Or, just click on the button below and Ill take you behind the scenes to the HTML for this page. Oh, and keep an eye out for less than () and greater than () signs, because those are part of the instructions which your web browser reads and obeys.
Top of Form 1
Buy cheap html term paper
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
Wow! Thats a lot of stuff, isnt it! Did you notice all those less than () and greater than () signs? Those are part of the HTML tags.
Learning to write HTML is not hard to do. Thats why you and I are here...to help you learn how to write HTML in order to make your web pages.
Now, lets get started learning the tools and rules of writing tags.
Saving your document
To write HTML, you will need a simple text editor. For Macintosh, I suggest using SimpleText, and for Windows, I suggest using Notepad or WordPad. You can however use a word processor program, such as Word or WordPerfect. But, if you do, then you must remember to save your files in the text format. In order to do this, when you are ready to save your document, you need to choose Save As, and not Save. This is because when you choose Save As, a box pops up and lets you choose the format in which you want to save your document. In this case, you want to save your work as Text.
Why all the fuss if you are using a word processor? Well, web browsers can only read text, and they cant understand anything else. When you use a word processor program like Word, your document does not automatically save as Text. Thats why I suggest using SimpleText or Notepad because your documents are automatically saved as Text.
While learning HTML, I suggest that you save all your documents in one folder and on your machines hard drive. Perhaps the simplest way to do this is to make the new folder on your desktop, allowing you quick and easy access to your documents.
Naming your document
To name your document, you can choose any filename that you want. But, you need to be sure to add the ending of .html for Macintosh and .htm for PCs to the filename you have chosen. For example, if you want to name your document Fred, you would type in the name as Fred.html
Viewing your document
When you are ready to see your new web pages, all you have to do is double click on the filename and it will appear on your computer just like a web page. This way, you dont need to have space on a web service provider to start learning how to write HTML. However, when your ready to show off your hard work to the rest of the world, you will need to send your documents to a web server, such as
HYPERLINK /redirect?url=http//www.tripod.lycos.com/
Tripod
HYPERLINK /redirect?url=http//geocities.yahoo.com/home/
GeoCities
HYPERLINK /redirect?url=http//angelfire.lycos.com/
Angelfire
.
Now, are you ready to continue because its time to get to the good stuff -- writing tags.
As you have learned, tags are the instructions that tell the web browser where to put things and how to make them look. Each tag begins with a left angle bracket ( ) and end with a right angle bracket ( ). Inbetween the angle brackets, place the tag name like this
left angle bracket
INCLUDEPICTURE d redarrow.gif
HTML
INCLUDEPICTURE d redarrow.gif
right angle bracket
INCLUDEPICTURE d redarrow.gif
tag name
That tag is called a starting tag, and usually each starting tag has a closing tag like this
/HTML
Notice that all you had to do to make the ending tag is add a blackslash ( / ) to the starting tag.
Are you wondering what this pair of tags will tell your browser to do? It is pretty simple. The starting tag, HTML, tells your Web browser that Hey, here is the start of a file that contains HTML coded information. And the ending tag, /HTML, tells your Web browser that Okay, here is the end of my HTML file.
There are many different tags that you can use to tell your browser what to do. Just remember that tags are always enclosed in angle brackets. Also, while I type the tag names in all upper case letters, tag names are case insensitive. This means that it doesnt matter whether you type them in upper or lower case. Write it how you want to...HTML, html, Html, or even hTmL if you really want to. Just do whatever makes it easiest for you to read.
Think youre getting the hang of HTML? Lets check out a few more tags and see what they do.
Wondering what else goes into your HTML document? Every HTML document needs a certain amount of tags in order for it to work. You already know that the first and last tags your file needs are the HTML tags to tell your web browser where the HTML in your document begins and ends
HTML
/HTML
Now you need to put in a pair of HEAD tags. These tags hold all of the documents header information, such as the title of the document and such. But, you dont have to worry about that. Just know that you need to put in a pair of HEAD tags, and know that any information put here is not seen by the web browser
HTML
HEAD
/HEAD
/HTML
Speaking of a title, lets go ahead and put in the TITLE tags, as well as the name you want to give to your document. Whatever falls between the TITLE tags will be the title of the document. Then, when anyone views your web page, people will see the title displayed in the title bar located in the upper left hand corner of the web browser. For instance, look up in your browser window now and youll see that the title of this web page is called Basic Tags. Lets show you an example of how to write the tag. In this instance I am going to use My First Web Page as the title
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
/HTML
Now, here is the absolute last pair of basic tags that an HTML document needs - the BODY tags. This pair of tags is the most important because in-between these two tags is where you will put the all the stuff (text, links, graphics, etc.) that you want to be displayed in the window by the web browser
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
all your stuff will go here
/BODY
/HTML
This is what your file will look like once you put it all together
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
Pretty blah looking, isnt it! Dont worry, you are on your way to learning about all the things that can go between the BODY tags. This is just your bare-bones HTML document. It contains nothing but the required minimum tags. But, hey, you are going to learn some more. Lets keep going.
Now that you know the four basic tags (HTML, HEAD, TITLE, BODY) that go into your document, lets look at all the stuff that you can put between the BODY tags.
Of course you are going to want some text displayed on your web page. As you saw from a previous example that all you need to do is type the words that you want displayed between the BODY and /BODY tags. So try something like this...
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
Woo-Hoo! Im learning HTML!
/BODY
/HTML
Want to see what it looks like in a web browser?
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
Did you notice that I put in some extra blank lines when typing the tags for the example above? You can do the same thing with your tags, as well as your text. Dont worry about how many blank lines or blank spaces you use because the web browser will take all of it and simply display it as one single space. Here is an example of what Im talking about
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
Woo-Hoo!
Im
learning
HTML!
/BODY
/HTML
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
Notice how the web browser just ignored all the blank lines between my words. That means you can go ahead and add as many blank lines and spaces as you want. Do whatever helps you to read your code.
Oh, and if you are wondering how to make extra spaces and line breaks show up in your web page, I will show you how to do just that next.
To get blank lines and blank spaces to show up in your web browser, there are a few tags that will do that trick.
If you want to start a new line, simply use a line break tag, BR.
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
Woo-Hoo! BR Im BR learning BR HTML!
/BODY
/HTML
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
If you want to start a new line and skip a line, you need to use a paragraph tag, P.
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
Woo-Hoo! P Im P learning P HTML!
/BODY
/HTML
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
To make more than one space between letters, you must use the non-breaking space tag, . Notice that this tag does not need the angle brackets and it does not need an ending tag. This tag is a special tag because it starts with & (ampersand) and ends with ; (semicolon). In other words, the & tells the web browser that we are beginning a special character and the ; tells the web browser that we are ending a special character. What about the letters in-between? Well those letters are sort of an abbreviation for what the tag is telling the web browser to do. In this case it is telling the web browser to display an extra blank space. There are lots more of these
HYPERLINK /redirect?url=http//www.owlnet.rice.edu/~jwmitch/iso885-1.html
special characters
that you should be aware of. Be careful, because unlike the other tags you have learned so far, this special tag is case sensitive. That means if you type (instead of ) the web browser wont know what you mean.
Here is an example using the   tag
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
Woo-Hoo! Im learning HTML!
/BODY
/HTML
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
Things look a bit confusing right now? Relax and just try playing around with the various tags. Dont worry about messing things up. I remember when I first started learning HTML. Boy, did I mess up my display! But hey, I sure did learn from my mistakes.
Finally, I want to let you know another way of breaking up your display beyond using the the line break tag, BR, and the paragraph tag, P. What I am talking about is the horizontal rule tag, HR, which will insert a horizontal line on your web page.
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
Woo-Hoo! HR Im learning HTML!
/BODY
/HTML
Top of Form 4
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 4
Wow! You have just learned a whole lot of new tags. However, there are still many more left for you to learn. Come on! Lets keep going and I will show you some really cool stuff to do to your text!
You can center your words on a line
CENTERWoo-Hoo! Im Learning HTML!/CENTER
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
You can make words bold
BWoo-Hoo!/B Im learning HTML!
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
Notice that I placed the start bold tag, B, just before the word that I wanted to make bold, as well as placing the end bold tag, /B, right after the word I wanted to make bold. This way I am giving specific instructions to the web browser, telling where to start making things bold and where to end. If I had forgotten to put the /B tag, it would have totally changed the display in the web browser. Check it out
BWoo-Hoo! Im learning HTML!
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
You can make words in italics
Woo-Hoo! Im Ilearning/I HTML!
You can underline words
Woo-Hoo! Im learning UHTML/U!
You can even use tags in combination. Want something bold, in italics, and underlined? No problem
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
BIUWoo-Hoo! Im learning HTML!/U/I/B
/BODY
/HTML
Top of Form 4
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 4
When you use more than one pair of tags, as I did in the above example, you need to do something called nesting so that you wont confuse the web browser. Let me explain . . .
Okay, now that you know how to use several different tags, I need to tell you about nesting. Nesting means that when you put several pairs of tags into a document, you must balance each pair of tags, making sure they do not overlap. It is easiest to understand with an example. So here is an example using the italics tag, I, and bold tag, B tag
PRIVATE
Incorrect
INCLUDEPICTURE d redarrow.gif
this end tag is overlapping
Correct
/B
If you have overlapping tags, then your document will be displayed by the web browser in ways you didnt expect.
Let me give you a more complicated example because this nesting thing is really important. Trust me, it can cause you some major problems later on when you start filling up your document with a whole lot of tags...
PRIVATE
Incorrect
TAG 1
TAG
TAG
/TAG
/TAG
INCLUDEPICTURE d redarrow.gif
this end tag is overlapping
/TAG 1
Correct
TAG 1
TAG
TAG
/TAG
/TAG
/TAG 1
As you can see in the second example, you need to put /TAG before you put /TAG .
Got it? Hope so, because I am ready to start showing you some more cool things that you can do with your text.
As you know, when writing HTML tags, you are giving instructions to the web browser on just how you want your web page to look. If you dont give specific instructions, the web browser will assume a few things. To explain, when you type in your text between the BODY tags, the web browser assumes that you want that text to be displayed a certain size because you havent told it any differently. In other words, the web browser will assume a default value of , which is the size of the text that you are reading right now. However, you can make your words bigger or smaller by just giving more specific instructions to the web browser.
So, to change the font size, first of all, you are going to need a pair of FONT tags FONT and /FONT. Next, you will need an attribute, which will give the web browser some additional instructions. In this case, you want to change the font size. So, to tell the web browser just what size you want, you must use the SIZE attribute. Also, you need to tell the web browser one more thing - what size to make the font. To do this, you simply tell the web browser a value.
Now, to put it all together, you need to put both the attribute and the value inside the start FONT tag
PRIVATE
Woo-Hoo!
FONT
INCLUDEPICTURE d redarrow.gif
start tag
SIZE =
INCLUDEPICTURE d redarrow.gif
attribute
6
INCLUDEPICTURE d redarrow.gif
value
Im /FONT
INCLUDEPICTURE d redarrow.gif
end tag
learning HTML!
Here is what it will look like when you typed it out
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
Woo-Hoo! FONT SIZE = 6 Im /FONT learning HTML!
/BODY
/HTML
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
In this example, the tags, attribute, and value are simply telling the the web browser that I want the font to be size 6.
Wondering just what size is 6 anyways? Good question. Here is the different sizes that you can use
1 4 5 6 7
Also, looking back at the examples, notice that I put the value in quotation marks ( 6 ). So, be careful when you are typing.
Ready to learn more about Fonts and Text Styles?
As you just learned, the web browser assumes a default value for the font size. Well, the web browser also assumes a default value for the font face, which is Times New Roman, and the font color, which is black. But, I am going to show you how to change them by writing attributes and values...just like we did with the font size!
To change the value for the font face, you need to use the FONT tags once again. Also, you need to include a FACE attribute, which is simply the name of the font you want to use. For example
PRIVATE
FONT
INCLUDEPICTURE d redarrow.gif
start tag
FACE =
INCLUDEPICTURE d redarrow.gif
attribute
Arial
INCLUDEPICTURE d redarrow.gif
value
Woo-Hoo!
Im learning HTML!
/FONT
INCLUDEPICTURE d redarrow.gif
end tag
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
Here is a quick list of just some of the faces that you can use
Arial
Arial Black
Arial Narrow
Book Antiqua
Bookman Old Style
Century Gothic
Century Schoolbook
Courier New
Garamond
Times New Roman
Verdana
To change the value for the font color, you need to use. . .can you guess what it is? . . .yep, the FONT tags. Also, you need to include a COLOR attribute and value
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
FONT COLOR = Orange Woo-Hoo! Im learning HTML! /FONT
/BODY
/HTML
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
As for giving a value, you can do as I did and type in the name of a color. Or, instead of typing in a
HYPERLINK http//www.projectcool.com/developer/reference/color-chart.html
color name
, you can place a
HYPERLINK http//www.projectcool.com/developer/reference/color-chart.html
which will allow you to specify the exact color you want. For instance, in the example above, I used the word Orange. But, instead, I could of typed this
FONT COLOR = #FF00 Woo-Hoo! Im learning HTML! /FONT
Just keep in mind that using a color code is safer since color names only work with Netscape web browsers.
Wondering if you can put more than one attribute in a tag? Say, for instance, you want to change the size, face and color. No problem! Just put all the attributes into the start tag
HTML
HEAD
TITLE Learning HTML /TITLE
/HEAD
BODY
FONT SIZE = 6 FACE = Comic Sans MS COLOR = #FF00
Woo-Hoo! Im learning HTML! /FONT
/BODY
/HTML
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
Well, you have just learned the basics on Fonts and Text Styles. Yeah! Now, lets move on to the real fun...making links to other web pages
Hyperlinks, or simply links, are all those underlined words or images that you see in web pages that will take you from one web page to another web page when you click on them. And, making links in HTML is really very simple once you get the hang of it. So lets just jump right in and make a link to the
HYPERLINK http//www.ipl.org
Internet Public Library
.
To start, you need a pair of anchor tags, A and /A, which tell the browser that Hey, here is a the begining and ending of a link. Between the anchor tags you want to put the text that will be your link. In this example, I am have used the words Internet Public Library
AInternet Public Library/A
But wait, thats not all. The web browser doesnt know what web page you want to link to. So, in order to tell the web browser what page you want to link to, you need to use a hypertext reference attribute, HREF, as well as a URL for the value. The URL, which stands for Uniformed Resource Locator, is nothing more than the web address that is displayed in the location bar of the web browser. For example, if you look up there right now, the web address for this page here is http//www.ipl.org/youth/kidsweb/tags.html .
I know, it sounds a bit confusing, but looking at the example might help
PRIVATE
INCLUDEPICTURE d redarrow.gif
start tag
HREF =
INCLUDEPICTURE d redarrow.gif
attribute
URL goes here write some text to identify the link/A
INCLUDEPICTURE d redarrow.gif
INCLUDEPICTURE d redarrow.gif
INCLUDEPICTURE d redarrow.gif
value this will be your link end tag
Still confused? Well, here is the HTML for making a link to the Internet Public Library
HTML
HEAD
TITLELearning HTML/TITLE
/HEAD
BODY
A HREF = http//www.ipl.org/Internet Public Library/A
/BODY
/HTML
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
Got the hang of it? It is pretty simple once you get the hang of it. Just make sure that the URL is enclosed in quotation marks, or your link wont take you anywhere.
Lets keep going. .
You will probably have more than one page to your website. And, most likely you will want to make a homepage and then create links to all the other pages of your website. To do this, you use the same pair of anchor tags, A/A, and the HREF attribute, as we did in the previous example where we made a link to the Internet Public Library
A HREF = http//www.ipl.org/ Internet Public Library/A
Whats different this time is that you do not need to use the URL for the value. Instead, you will use the filename for the page that you want to link to. Remember that the filename is simply what you named your HTML document when you saved it to your computers harddrive. For example, Fred.html .
Now, say for instance, that you want to make a link to Fred.html from your homepage. All you would have to do is type the following HTML into your homepage document
HTML
HEADER
TITLEHomepage/TITLE
/HEADER
BODY
A HREF = Fred.htmlGoto Fred.html/A
/BODY
/HTML
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
Just keep experimenting with the tags and you will get the hang of it.
Want to spice up your web page with some graphics and images? All you need is the image tag, IMG, and the source attribute, SCR, and a filename for the value. For example, I have an image of a goldfish bowl on on my computers hard drive in the same folder with my HTML documents. And, I want to tell the web browser to put the picture of the goldfish bowl on the web page right here, right now. This is how I would do it
HTML
HEAD
TITLELearning HTML/TITLE
/HEAD
BODY
IMG SRC = GoldfishBowl.gif
/BODY
/HTML
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
Want to make the image bigger? All you have to do is specify a WIDTH and HEIGHT attribute, as well as a value for each
HTML
HEAD
TITLELearning HTML/TITLE
/HEAD
BODY
IMG SRC = GoldfishBowl.gif WIDTH=75 HEIGHT=75
/BODY
/HTML
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
Want to center the image on the web page? Just add a pair of CENTER tags
HTML
HEAD
TITLELearning HTML/TITLE
/HEAD
BODY
CENTERIMG SRC = GoldfishBowl.gif/CENTER
/BODY
/HTML
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
Pretty cool, huh?
There are tons of places to find images and graphics for your page. In fact, check out the IPL Youth Divisions
HYPERLINK http//www.ipl.org/cgi-bin/youth/youth.out.pl?sub=cai5000
Web Page Design
for some resources.
Also, when you do find something that you want to include on your page -- whether images, graphics, or even text -- you need to make sure that it is not copyrighted. To better understand, let me explain some more about copyright. . .
INCLUDEPICTURE d z greenbar.gif
Now that you know how to do cool things with your text, as well as how to make links and add images and graphics, I will show you how to put some finishing touches onto your web page.
To change the background color of your webpage, you need to place a background color attribute BGCOLOR, and a color value, which will be one of the
HYPERLINK /redirect?url=http//www.projectcool.com/developer/reference/color-chart.html
color codes
that you learned about earlier, inside the start body tag
HTML
HEAD
TITLELearning HTML/TITLE
/HEAD
BODY BGCOLOR = cb71
/BODY
/HTML
Top of Form 1
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form 1
To use an image or graphic as your background, you need to use the BACKGROUND attribute and give the filename of the image or graphic for the value
HTML
HEAD
TITLELearning HTML/TITLE
/HEAD
BODY BACKGROUND = background.jpg
/BODY
/HTML
Top of Form
HTMLCONTROL Forms.HTMLText.1 MERGEFORMAT s
Bottom of Form
If you decide to change the background, just make sure that your text can be read easily when displayed
INCLUDEPICTURE d z greenbar.gif
úúúúö᥀ð�Û
�ÐÐÎÎÎÎÎÐÎÎÎÐ�ឪឧ
ÐÐÎÎÎÎÎÐÎÎÎÐ�Æឧ
øÂÄÄÄÄ
ÂÄÄÄÄÄ
ÄøÄøÄ�
øÄøÄ�²
úêɊáÝÝÝÝáú�
�ÂùùÀùù¾ùù¾�
ÂùùÀùù¾ùù¾�
âøüøËÇÇËøË
øüøËÇÇËøËü
úíú᠂úíú᠂ú�íú᠂úú
ú᠂íúú᠂íúú᠂�íúú᠂úß
ú�ÎÉÄ¿ºµ°¿íííú
âËËÉÉÉÉË
ËËÉÉÉÉËÉ
`ᤳᤳᤳᤷᤳᤳʇÝÝÝÝÝÝü÷
ÝÝÝÝÝü÷Ì
÷üüÝÝÝÝÝʇÝ÷
üüÝÝÝÝÝÝʇ÷�
ýù�龦�ùù�
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
/redirect?url=http//www.tripod.lycos.com/
/redirect?url=http//geocities.yahoo.com/home/
/redirect?url=http//angelfire.lycos.com/
M¤dºq qB®XK
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
/redirect?url=http//www.owlnet.rice.edu/~jwmitch/iso885-1.html
Root Entry
Root Entry
WordDocument
WordDocument
ObjectPool
ObjectPool
_1117550648
_1117550648
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
HTMLText1
HTMLText1
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
_111755111
_111755111
CompObj
CompObj
Tahoma
i am cool
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=i am cool
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText
HTMLText
_11175511
CompObj
CompObj
Tahoma
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=suck
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText4
HTMLText4
_111755104
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText
HTMLText
_111755111
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText8
HTMLText8
_111755117
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText7
HTMLText7
_111755114
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText6
HTMLText6
_111755111
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText5
_11175516
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText1
HTMLText1
_11175515
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText11
HTMLText11
_11175515
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText10
HTMLText10
_11175514
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText
HTMLText
_11175516
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText1
HTMLText1
_11175515
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText16
HTMLText16
_111755158
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText15
HTMLText15
_1117551504
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText14
HTMLText14
_111755156
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText17
HTMLText17
_111755154
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText18
HTMLText18
_11175516
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText1
HTMLText1
_1117551688
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText0
HTMLText0
_111755166
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText1
HTMLText1
_111755178
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText
HTMLText
_111755178
CompObj
CompObj
Tahoma
see page
Forms.HTMLText.1
Embedded Control
Forms.HTMLText.1
INPUT TYPE=button VALUE=see page
ObjInfo
ObjInfo
OCXDATA
OCXDATA
OCXNAME
OCXNAME
OlePres000
OlePres000
HTMLText
HTMLText
What is HTML anyway
Bradly Nisbet
Normal
Bradly Nisbet
Microsoft Word 8.0
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
http//www.projectcool.com/developer/reference/color-chart.html
http//www.projectcool.com/developer/reference/color-chart.html
http//www.projectcool.com/developer/reference/color-chart.html
http//www.projectcool.com/developer/reference/color-chart.html
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
http//www.ipl.org/
http//www.ipl.org/
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
http//www.ipl.org/cgi-bin/youth/youth.out.pl?sub=cai5000
http//www.ipl.org/cgi-bin/youth/youth.out.pl?sub=cai5000
/redirect?url=http//www.projectcool.com/developer/reference/color-chart.html
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
IIte qBÎ
K$·_Ÿ
DwEiSò�$â
M
%
1Table
1Table
SummaryInformation
SummaryInformation
DocumentSummaryInformation
DocumentSummaryInformation
Macros
Macros
What is HTML anyway
_PID_GUID
_PID_HLINKS
{B45E8C-A7
{B45E8C-A7U
F-11D7-1B-44455540000}
F-11D7-1B-44455540000}
/redirect?url=http//www.projectcool.com/developer/reference/color-chart.html
/redirect?url=http//www.projectcool.com/developer/reference/color-chart.html
http//www.ipl.org/cgi-bin/youth/youth.out.pl?sub=cai5000
http//www.ipl.org/cgi-bin/youth/youth.out.pl?sub=cai5000
http//www.ipl.org/
http//www.ipl.org/
http//www.projectcool.com/developer/reference/color-chart.html
http//www.projectcool.com/developer/reference/color-chart.html
http//www.projectcool.com/developer/reference/color-chart.html
http//www.projectcool.com/developer/reference/color-chart.html
/redirect?url=http//www.owlnet.rice.edu/~jwmitch/iso885-1.html
/redirect?url=http//www.owlnet.rice.edu/~jwmitch/iso885-1.html
/redirect?url=http//angelfire.lycos.com/
/redirect?url=http//angelfire.lycos.com/
/redirect?url=http//geocities.yahoo.com/home/
/redirect?url=http//geocities.yahoo.com/home/
/redirect?url=http//www.tripod.lycos.com/
/redirect?url=http//www.tripod.lycos.com/
greenbar.gif
greenbar.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
greenbar.gif
greenbar.gif
HTMLText1, 0, 0, MSForms, HTMLText
HTMLText, 1, 1, MSForms, HTMLText
HTMLText, , , MSForms, HTMLText
HTMLText4, , , MSForms, HTMLText
HTMLText5, 4, 4, MSForms, HTMLText
HTMLText6, 5, 5, MSForms, HTMLText
HTMLText7, 6, 6, MSForms, HTMLText
HTMLText8, 7, 7, V
ThisDocument
ThisDocument
__SRP_
__SRP_
__SRP_
__SRP_
MSForms, HTMLText
HTMLText, 8, 8, MSForms, HTMLText#
HTMLText10, , , MSForms, HTMLText%
HTMLText11, 10, 10, MSForms, HTMLText%
HTMLText1, 11, 11, MSForms, HTMLText%
HTMLText1, 1, 1, MSForms, HTMLText%
HTMLText14, 1, 1, MSForms, HTMLText%
HTMLText15, 14, 14, MSForms, HTMLText%
HTMLText16, 15, 15, MSForms, HTMLText%
HTMLText17, 16, 16, MSForms, HTMLText%
HTMLText18, 17, 17, MSForms, HTMLText%
HTMLText1, 18, 18, MSForms, HTMLText%
HTMLText0, 1, 1, MSForms, HTMLText%
HTMLText1, 0, 0, MSForms, HTMLText%
HTMLText, 1, 1, MSForms, HTMLText%
HTMLText, , , MSForms, HTMLText
(1Normal.ThisDocument3㸂
R800#8
R800#8
$Rffff1eef1089
Rffff1eef108ß
Attribut
e VB_Nam
e = Thi
sDocumen
1Normal
VCreata
`False
Predecl
xTru
Expose
Template Deriv
$CuÀstomiz
c€Control|
HTMLText
MSFq€ss, …
Pd E1a
G{00004EF-0000-0000-C000-000000000046}#.0##CPROGRAM FILESCOMMON FILESMICROSOFT SHAREDVBAVBA.DLL#Visual Basic For Applications
G{000005-0000-0000-C000-_VBA_PROJECT
__SRP_0
__SRP_0
__SRP_1
__SRP_1
000000000046}#8.0#40#CProgram FilesMicrosoft OfficeOfficeMSWORD8.OLB#Microsoft Word 8.0 Object Library
000000000046}#8.0#40#CProgram FilesMicrosoft OfficeOfficeMSWORD8.OLB#Microsoft Word 8.0 Object Library
¸G{000040-0000-0000-C000-000000000046}#.0#0#CWINDOWSSYSTEMSTDOLE.TLB#OLE Automation
¸G{000040-0000-0000-C000-000000000046}#.0#0#CWINDOWSSYSTEMSTDOLE.TLB#OLE Automation
àG{FA7D1E-11DC-11D7-1B1-C8D77A781E7D}#.0#0#CWINDOWSSYSTEMMSForms.TWD#Microsoft Forms .0 Object Library
àG{FA7D1E-11DC-11D7-1B1-C8D77A781E7D}#.0#0#CWINDOWSSYSTEMMSForms.TWD#Microsoft Forms .0 Object Library
ìG{B45E88-A7F-11D7-1B-44455540000}#.0#0#CWINDOWSTEMPWord8.0MSForms.EXD#Microsoft Forms .0 Object Library
ìG{B45E88-A7F-11D7-1B-44455540000}#.0#0#CWINDOWSTEMPWord8.0MSForms.EXD#Microsoft Forms .0 Object Library
CNormal
CNormal
CNormal3㸅
G{DF8D04C-5BFA-101B-BDE5-00AA0044DE5}#.0#0#CPROGRAM FILESMICROSOFT OFFICEOFFICEMSO7.DLL#Microsoft Office 8.0 Object Library
ThisDocument
1ǻȮف
Project1
stdole
`
MSFormsC
ThisDocumentž
_Evaluate
Normal
Office
Project-®
HTMLText1Ê[
HTMLTextË[
HTMLTextÌ[
HTMLText4Í[
HTMLText5Î[
HTMLText6Ï[
HTMLText7Ð[
HTMLText8�[
HTMLText�[
HTMLText10/A
HTMLText110A
HTMLText11A
Documentj�
HTMLText1A
HTMLText14A
HTMLText154A
HTMLText165A
HTMLText176A
HTMLText187A
HTMLText18A
HTMLText0TA
HTMLText1UA
HTMLTextVA
HTMLTextWA
Project
G{0000°40-
0046}#
.0#0#C
WINDOWS
SYSTEM
STDOLE.
tomation
mMSFo@rms
FFA7D1E€-11DC
7-1B1-C
8D77A781
D#MicrosPoft
Libr8ary
45E88-A
P-444
5554˜
PWord8.$0…)EX§)á.
CyRN@ValCyN„UaQÀy
Of(ficDŠO@‡f
G{DF8D0
4C-5BFA-
101B-BDER5@ŠAA@‰4À
PROGRAM
FILESM
ICROSOFT
OFFICE
MSO7.DlLLHl�# ÀJ’l
B¸ThisDoc@ument
CNormalrU
Project1
ThisDocument
Project
CPROGRAM FILESCOMMON FILESMICROSOFT SHAREDVBAVBA.DLL
CProgram FilesMicrosoft OfficeOfficeMSWORD8.OLB
CWINDOWSSYSTEMSTDOLE.TLB
stdole
HTMLText1
CWINDOWSSYSTEMMSForms.TWD
MSForms
CWINDOWSTEMPWord8.0MSForms.EXD
CPROGRAM FILESMICROSOFT OFFICEOFFICEMSO7.DLL
Office
HTMLText
HTMLText
HTMLText4
HTMLText5
HTMLText6
HTMLText7
HTMLText8
HTMLText
HTMLText10
HTMLText11
HTMLText1
Document
HTMLText1
HTMLText14
HTMLText15
HTMLText16
HTMLText17
HTMLText18
HTMLText1
HTMLText0
HTMLText1
HTMLText
HTMLText
HTMLText1
HTMLText
HTMLText
HTMLText4
HTMLText5
HTMLText6
HTMLText7
HTMLText8
HTMLText
HTMLText10
HTMLText11
HTMLText1
HTMLText1
HTMLText14
HTMLText15
HTMLText16
HTMLText17
HTMLText18
HTMLText1
HTMLText0
HTMLText1
HTMLText
HTMLText
PROJECTwm
PROJECTwm
PROJECT
PROJECT
PROJECTlk
PROJECTlk
CompObj
CompObj
ThisDocument
tThisDocument
ID={B45E8D-A7F-11D7-1B-44455540000}
Document=ThisDocument/&H00000000
Name=Project
HelpContextID=0
CMG=1C1E8BFCD41A141A141A141A1
DPB=6567FB7701701701
GC=AEAC0ACB1A151B151BEA
[Host Extender Info]
&H00000001={8D640-CF0-11CF-8E4-00A0C11005A};VBE;&H00000000
&H0000000={0000F-0000-0000-C000-000000000046};Word8.0;&H00000000
Normal
Normal
Default Paragraph Font
Default Paragraph Font
Hyperlink
Hyperlink
z-Bottom of Form
z-Bottom of Form
z-Top of Form
z-Top of Form
Blockquote
Blockquote
Definition List
Definition List
greenbar.gif
greenbar.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
redarrow.gif
greenbar.gif
greenbar.gif
_Hlt4811850
Bradly NisbetCWINDOWSTEMPAutoRecovery save of Document1.asd
Bradly Nisbet&CMy Documentshow to do web page.doc
Bradly Nisbet;CWINDOWSTEMPAutoRecovery save of how to do web page.asd
Bradly Nisbet&CMy Documentshow to do web page.doc
Bradly NisbetCWINDOWSTEMPAutoRecovery save of Document1.asd
Bradly Nisbet&CMy Documentshow to do web page.doc
Bradly Nisbet;CWINDOWSTEMPAutoRecovery save of how to do web page.asd
Bradly Nisbet&CMy Documentshow to do web page.doc
Times New Roman
Times New Roman
Symbol
Symbol
Arial Black
Arial Black
Arial Narrow
Arial Narrow
Book Antiqua
Book Antiqua
Bookman Old Style
Bookman Old Style
Verdana
Verdana
Century Schoolbook
Century Schoolbook
Courier New
Courier New
Garamond
Garamond
What is HTML anyway
What is HTML anyway
Bradly Nisbet
Bradly Nisbet
Bradly Nisbet
Bradly Nisbet
Microsoft Word Document
MSWordDoc
Word.Document.8
Please note that this sample paper on html is for your review only. In order to eliminate any of the plagiarism issues, it is highly recommended that you do not use it for you own writing purposes. In case you experience difficulties with writing a well structured and accurately composed paper on html, we are here to assist you. Your cheap custom college paper on html will be written from scratch, so you do not have to worry about its originality.
Order your authentic assignment from cheap essay writing service and you will be amazed at how easy it is to complete a quality custom paper within the shortest time possible!