JediLucas5
06-03-2007, 01:03 AM
Ok so your wanting to make an HTML page? first of all you need to know what HTML is HTML is Hypertext Markup Language which is a web design laguage comonly used by big buisnesses. Well lets start shall we Here is the basic tags for HTML that are needed in every HTML code.
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Those are basic tags that all HTML codes have if not then it wont come up like you wanted it to. When using HTML code you should use caps lock so you can depict code from normal text. You noticed how I made the same tags but with a "/" on them? well that tells the code to end that commands. now lets move on to adding a heading like the big letters on the center top of web pages that tell you were your at.
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY>
<H1><CENTER>WElcome to my Page!</H1></CENTER>
</BODY>
</HTML>
"H1" stands for heading one which enlarges the text within in codes. you can pick between h1-h3 all different sizes. The code <CENTER> tells the HTML to move it to the center of the page. you can use Center, Right, and Left. Now lets Backround and font color shall we?
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY><BG COLOR="RED"><FONT="BLACK">
<H1><CENTER>WElcome to my Page!</H1></CENTER>
</FONT>
</BODY>
</HTML>
Now it should appear as a red backround and black. the parenthesis are to make sure it's the right color basically a you counter. You can use basically any color known to man. You only need to close font because backround closes with </BODY> also you might need to use <BGCOLOR="BLACK">. Now lets try and learn how to add a picture to it.
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY><BG COLOR="RED"><FONT="BLACK">
<H1><CENTER>WElcome to my Page!</H1></CENTER>
<IMG SRC="TH.EXACT.NAME.OF.THE.JPG.JPEG.OR.GIF.HERE">
</FONT>
</BODY>
</HTML>
IMG SRC allowes to to put in photos pictures or graphics into your site you can also put <CENTER,LEFT,RIGHT> before it to but it anywhere you want on your page. Lets try Basic URL links kinda like hypertext yet on the internet that takes you to a diffrent part of your site or a totally different one alltogether! so lets give it a try
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY><BG COLOR="RED"><FONT="BLACK">
<H1><CENTER>WElcome to my Page!</H1></CENTER>
<A HREF="www.PawgGame.com">Click here to go to my favorite game! </A>
</FONT>
</BODY>
</HTML>
As you saw me add A HREF to the code when you see the site you will only see "Click here to go to my favorite game!" and when you click on it, it will take you to Pawn homepage, you can add any URL into it. Now I'm gonna teach you how to make a Image be a A HREF link! heres out it goes.
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY><BG COLOR="RED"><FONT="BLACK">
<H1><CENTER>WElcome to my Page!</H1></CENTER>
<A HREF="www.PawgGame.com"><IMG SRC="Pawn.gif"></A>
</FONT>
</BODY>
</HTML>
Now it will show up as the picutred specified and when you clik on the picture it will take you to that URL to add text to it just put words in it at the end of the > in IMG SRC. Well thats basically all you needed to know here is a list of other tags you might find useful while using HTML language!
<OL>My favorite foods!
<LI> Chicken
<LI> Pizza
<LI> fish
</OL>
This is an ordered list, when done correctly it should do this
My Favorite foods!
1. Chicken
2. Pizza
3. Fish
Now lets move on to and unorded list!
<UL>What I'm like
<LI>Evil
<LI>Hatefull
<LI>Spitefull
</UL>
If done correclty it should end up like this
What I'm Like
•Evil
•Hatefull
•Spitefull
And thats an unordered list. here is a series of tags and defintions you might like to know!
<BR> Is a line breaker
<P> Puts your text in paragraph form (must close this tag)
<B> Makes text bold (must close this tag)
<U> Makes text underlined (must close this tag)
<E> Gives feeling to the text (must close this tag)
<S> Strongfaces the text (most close this tag)
I will be adding more defintions and stuff pelase tell me any I left out and if you need any help contact me at JediLucas5@AOL.com please. Thanks for reading!
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Those are basic tags that all HTML codes have if not then it wont come up like you wanted it to. When using HTML code you should use caps lock so you can depict code from normal text. You noticed how I made the same tags but with a "/" on them? well that tells the code to end that commands. now lets move on to adding a heading like the big letters on the center top of web pages that tell you were your at.
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY>
<H1><CENTER>WElcome to my Page!</H1></CENTER>
</BODY>
</HTML>
"H1" stands for heading one which enlarges the text within in codes. you can pick between h1-h3 all different sizes. The code <CENTER> tells the HTML to move it to the center of the page. you can use Center, Right, and Left. Now lets Backround and font color shall we?
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY><BG COLOR="RED"><FONT="BLACK">
<H1><CENTER>WElcome to my Page!</H1></CENTER>
</FONT>
</BODY>
</HTML>
Now it should appear as a red backround and black. the parenthesis are to make sure it's the right color basically a you counter. You can use basically any color known to man. You only need to close font because backround closes with </BODY> also you might need to use <BGCOLOR="BLACK">. Now lets try and learn how to add a picture to it.
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY><BG COLOR="RED"><FONT="BLACK">
<H1><CENTER>WElcome to my Page!</H1></CENTER>
<IMG SRC="TH.EXACT.NAME.OF.THE.JPG.JPEG.OR.GIF.HERE">
</FONT>
</BODY>
</HTML>
IMG SRC allowes to to put in photos pictures or graphics into your site you can also put <CENTER,LEFT,RIGHT> before it to but it anywhere you want on your page. Lets try Basic URL links kinda like hypertext yet on the internet that takes you to a diffrent part of your site or a totally different one alltogether! so lets give it a try
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY><BG COLOR="RED"><FONT="BLACK">
<H1><CENTER>WElcome to my Page!</H1></CENTER>
<A HREF="www.PawgGame.com">Click here to go to my favorite game! </A>
</FONT>
</BODY>
</HTML>
As you saw me add A HREF to the code when you see the site you will only see "Click here to go to my favorite game!" and when you click on it, it will take you to Pawn homepage, you can add any URL into it. Now I'm gonna teach you how to make a Image be a A HREF link! heres out it goes.
<HTML>
<HEAD>
<TITLE>Your.title</TITLE>
</HEAD>
<BODY><BG COLOR="RED"><FONT="BLACK">
<H1><CENTER>WElcome to my Page!</H1></CENTER>
<A HREF="www.PawgGame.com"><IMG SRC="Pawn.gif"></A>
</FONT>
</BODY>
</HTML>
Now it will show up as the picutred specified and when you clik on the picture it will take you to that URL to add text to it just put words in it at the end of the > in IMG SRC. Well thats basically all you needed to know here is a list of other tags you might find useful while using HTML language!
<OL>My favorite foods!
<LI> Chicken
<LI> Pizza
<LI> fish
</OL>
This is an ordered list, when done correctly it should do this
My Favorite foods!
1. Chicken
2. Pizza
3. Fish
Now lets move on to and unorded list!
<UL>What I'm like
<LI>Evil
<LI>Hatefull
<LI>Spitefull
</UL>
If done correclty it should end up like this
What I'm Like
•Evil
•Hatefull
•Spitefull
And thats an unordered list. here is a series of tags and defintions you might like to know!
<BR> Is a line breaker
<P> Puts your text in paragraph form (must close this tag)
<B> Makes text bold (must close this tag)
<U> Makes text underlined (must close this tag)
<E> Gives feeling to the text (must close this tag)
<S> Strongfaces the text (most close this tag)
I will be adding more defintions and stuff pelase tell me any I left out and if you need any help contact me at JediLucas5@AOL.com please. Thanks for reading!