Tag

HTML time Tag

<p>We open at <time>10:00</time> every morning.</p> <p>I have a date on <time datetime=”2008-02-14 20:00″...Read More

HTML thead Tag

<table> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <...Read More

HTML th Tag

<table> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100<...Read More

HTML tfoot Tag

<table> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <...Read More

HTML textarea Tag

<textarea rows=”4″ cols=”50″> At w3schools.com you will learn how to make a website. We offer free tutorials in all web ...Read More

HTML td Tag

<table> <tr> <td>Cell A</td> <td>Cell B</td> </tr> </table> Definition and Usage The <td> tag de...Read More

HTML tbody Tag

<table> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <...Read More

HTML table Tag

<table> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100<...Read More

HTML sup Tag

<p>This text contains <sup>superscript</sup> text.</p> Definition and Usage The <sup> tag defines superscript text. Supe...Read More