In Tro Basic HTML Fonts Images Links Marquees Backgrounds Tables FieldSet, TextArea Lists CSS Cursors Divs Page Anchors I Frame Image Maps Music Flash E mail Form Pop Ups Drop Down Menu - MySpace Edits - Center Profile Hide Extended Network Hide Details Section Hide Last Login Hide Contact Box Hide Your Friends Hide General Info. Hide Comments Hide Friends/Comments Hide Search Form Move Contact Box Remove MySpace Links Remove URL Box Resize Comment Images Reverse Com & Friends Scrollable Comments Dot Comers Grey Matter Mega Book Tag Board PHP FTP CHMOD CPanel Scripts Paint Shop Pro Animation Shop Vector Cheat Radio Blog My Space HTML Tester Help Links Color Chart Get-Hosting.net DaRicanBoi.com OrlandoSotoJr.com SoDamnCocky.com MySpace.com/S.D.C. |
-:] <html> ... </html>
The HTML tag is used to simply signifies that the document will be using HTML language. Everything in between the opening HTML tag [<html>] and the closing HTML tag [</html>] will be HTML.-:] <head> ... </head>
The head tag encloses the commands to be sent to the browser first. Some things that go inside the head tag are your title and the meta data you have, as well as all CSS Style Sheets information.
Everything from the the opening Head tag [<head>] and the closing HEAD tag [</head>] will be loaded first. -:] <title> ... </title>
The title tag surrounds the text to appear at the top bar of the browser. If you look to the top of the browser, you will see "*Xplicit-HTML* [dot] net" this is the title of this web page. -:] Spacing: using that simple code, you can create a space. ex: word word. there is only one space between the two words, to add more add more ex: word word, with 5 , ex: word word. with 20 -:] Line Breaks: By adding a <br>, you can create a line break. ex: Word Word , one line break [<br>] ex: word word , 3 line breaks [<br><br><br>] By adding a <p>, you can create a double line break. ex: Word Word , one line break [<br>] ex: word
word , with a <p> [<p> is the same as <br><br> {2 <br>} ] -:] Horizontal Line: By using a <hr>, you can create a horizontal line. [it will extend to the ends of both sides] To change the width of the <hr>, add this: <hr width=65%> To make it thicker add use this: <hr width=65% size=15> To add color use this: <hr width=65% size=15 color="990000"> To have No Shade: <hr noshade> -:] Align: If you want to align something use these codes: [align="left" align="center" align="right"] <p align="left">word</p> <p align="center">word</p> <p align="right">word</p> You can aslo use <center> to center something: -:] quick font codes bold = <b> WORD </b> italic = <i> WORD </i> underline = <u> WORD </u> SuperScript = <sup> WORD </sup> SubScript = <sub> WORD </sub> Typewriter = <tt> WORD </tt> |