Understanding of HTML
For starters, HTML means Hyper Text Markup Language
It is a code used to let you see what you see on a web browser
Is good to know HTML becauses it will be helpful if making a site, you wont have to hire someone
Anyway lets begin
A ISOgaming guide
Written by Ic3fox AKA TyROiiD AKA FrOzOnE
DO NOT RIP
If i see this on other sites i wont make guides for you guys anymore
--Below is a list of the HTML 4.01 Tags--
Now that you know the tagsCode:<!--...--> <!doctype> <a> <abbr> <acronym> <address> <applet> <area> <b> <base> <basefont> <bdo> <big> <blockquote> <body> <br> <button> <caption> <center> <cite> <code> <col> <colgroup> <dd> <del> <dfn> <dir> <div> <dl> <dt> <em> <fieldset> <font> <form> <frame> <frameset> <h1> <h2> <h3> <h4> <h5> <h6> <head> <hr> <html> <i> <iframe> <img> <input> <ins> <isindex> <kbd> <label> <legend> <li> <link> <map> <menu> <meta> <noframes> <noscript> <object> <ol> <optgroup> <option> <p> <param> <pre> <q> <s> <samp> <script> <select> <small> <span> <strike> <strong> <style> <sub> <sup> <table> <tbody> <td> <textarea> <tfoot> <th> <thead> <title> <tr> <tt> <u> <ul> <var>
You will probably not use them all, but there there if you need them
Now lets begin
For every tag you open you must close it with
For exampleCode:/
If you dont close your tag it wont show up in the html docCode:<html> </html>
Now in EVERY html document you MUST have these following six tags in it
But you can have as many tags in a html doc as you wantCode:<html> <head> </head> <body> </body> </html>
Lets start with some basic tags and work to harder ones
We will start with the Paragraph tag
The tag itself:
Now in the html format:Code:<p>
Now with some text:Code:<html> <head> </head> <body> <p> </p> </body> </html>
Now lets make another line:Code:<html> <head> </head> <body> <p>This is a HTML tut written by Ic3foX </p> </body> </html>
If you were to put this in a html doc you would seeCode:<html> <head> </head> <body> <p>This is a HTML tut written by Ic3foX </p> <p>I wish i was him </p> </body> </html>
You notice how there was a space?Code:This is a HTML tut written by Ic3foX I wish i was him
To get rid of it you will have to use the next tag that i will teach you:
It is the linbreak tag
For this tag the close function gose at the end
Begining:
Closed function:Code:<br>
For this tag you dont use:Code:<br/>
You have to start with the Paragraph tag and end with the Line Break tagCode:<br> <br/>
In full format it looks like:Code:<p> <br/>
Now with some text:Code:<html> <head> </head> <body> <p> <br/> </body> </html>
If you were to put this in a html doc you would seeCode:<html> <head> </head> <body> <p>This is a HTML tut written by Ic3foX I wish i was him <br/> </body> </html>
You see how its different from the Paragraph one?Code:This is a HTML tut written by Ic3foX I wish i was him
Now lets make some words stick out
We will be using TEN tags for this
The strong and B tag are the same thingCode:<h1> <h2> <h3> <h4> <h5> <h6> <strong> <b> <i> <u>
Moving on...
At this point you should know how to use the following tags:
Code:<h1> <h2> <h3> <h4> <h5> <h6> <strong> <b> <i> <u> <p> <br/>
-TyROiiD