WEBMAK!
HTML Formatting
You may be familiar with the formatting of MS Office, QuarkExpress etc. Like Bold, Italic, Underlined etc. Well these formatting are available in HTML too. Lets learn some of the most common formatting....
All other formatting like Computer output etc. Are used as same as the Headings Formatting, I know its quite easy So, no more examples, Just see below for complete list of tags and their description to use them as well as....
You may be familiar with the formatting of MS Office, QuarkExpress etc. Like Bold, Italic, Underlined etc. Well these formatting are available in HTML too. Lets learn some of the most common formatting....
Headings FormattingHTML has special tags to format headings with 6 different levels ranging from <h1> for the most important to <h6> for the least respectively...
Result:
Example: <h1>Heading 1</h1> <h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6>
Result:
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
All other formatting like Computer output etc. Are used as same as the Headings Formatting, I know its quite easy So, no more examples, Just see below for complete list of tags and their description to use them as well as....
HTML Text Formatting
Tag | Description |
---|---|
<b> | Bold Text |
<i> | Italic Text |
<u> | Underlined Text |
<big> | Big Text |
<small> | Small Text |
<em> | Emphasized Text |
<sub> | Subscripted Text |
<sup> | Supersaristed Text |
<ins> | Inserted Text |
<del> | Deleted Text |
<strong> | Strong Text |
Computer Output Formatting
Tag | Description |
<code> | Computer Code Text |
<kbd> | Keyboard Text |
<samp> | Sample Computer Code |
<var> | Variable Text |
<pre> | Preformatted Text |
<tt> | Teletype Text |