HTML em strong dfn code samp kbd var cite Tags

November 11th, 2010 by aBisona 
Example Format text in a document: <em>Emphasized text</em> <strong>Strong text</strong> <dfn>Definition term</dfn> <code>Computer code text</code> <samp>Sample computer code text</samp> <kbd>Keyboard text</kbd> <var>Variable</var> <cite>Citation</cite> Try it yourself » Definition and Usage The <em>,...

HTML ul Tag

November 11th, 2010 by aBisona 
Example An unordered HTML list: <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> Try it yourself » (more examples at the bottom of this page) Definition and Usage The <ul> tag defines an unordered list (a bulleted list).

HTML u Tag

November 11th, 2010 by aBisona 
The u element is deprecated. Example Underline text with the <u> tag: <p>Do not <u>underline</u> text if it is not a hyperlink!</p> Try it yourself » Definition and Usage The <u> tag defines underlined text.

HTML tt i b big small Tags

November 11th, 2010 by aBisona 
Example Format text in a document: <tt>Teletype text</tt> <i>Italic text</i> <b>Bold text</b> <big>Big text</big> <small>Small text</small> Try it yourself » Definition and Usage The <tt>, <i>, <b>, <big>, and <small> tags are all font-style tags. They are not deprecated, but it is possible to achieve richer...

HTML tr Tag

November 11th, 2010 by aBisona 
Example A simple HTML table, containing two columns and two rows: <table > <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> Try it yourself » (more examples at the bottom of this page) Definition and Usage The <tr> tag defines a row in an HTML table. A tr element...

HTML title Tag

November 11th, 2010 by aBisona 
Example A simple HTML document, with the minimum of required tags: <html> <head> <title>Title of the document</title> </head> <body> The content of the document…… </body> </html> Try it yourself » Definition and Usage The <title> tag defines the title of the document. The title element is required in all HTML/XHTML documents. The...

HTML thead Tag

November 11th, 2010 by aBisona 
Example An HTML table with a thead, tfoot, and a tbody element: <table > <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$180</td> </tr> </tfoot> <tbody> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody> </table> Try...

HTML th Tag

November 11th, 2010 by aBisona 
Example A simple HTML table, containing two columns and two rows: <table > <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> Try it yourself » (more examples at the bottom of this page) Definition and Usage The <th> tag defines a header cell in an HTML table. An HTML...

HTML textarea Tag

November 11th, 2010 by aBisona 
Example A simple text area: <textarea rows=”2″ cols=”20″> At W3Schools you will find all the Web-building tutorials you need, from basic HTML to advanced XML, SQL, ASP, and PHP. </textarea> Try it yourself » Definition and Usage The <textarea> tag defines a multi-line text input control. A text area can hold an unlimited number of characters, and the text...

HTML td Tag

November 11th, 2010 by aBisona 
Example A simple HTML table, containing two columns and two rows: <table > <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> Try it yourself » (more examples at the bottom of this page) Definition and Usage The <td> tag defines a standard cell in an HTML table. An...

HTML tbody Tag

November 11th, 2010 by aBisona 
Example An HTML table with a thead, tfoot, and a tbody element: <table > <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$180</td> </tr> </tfoot> <tbody> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody> </table> Try...

HTML table Tag

November 11th, 2010 by aBisona 
Example A simple HTML table, containing two columns and two rows: <table > <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> Try it yourself » (more examples at the bottom of this page) Definition and Usage The <table> tag defines an HTML table. A simple HTML table...