Useful HTML elements Every Web Developer Should Know
list <ol> and <ul> there is an ordered list and an unordered list Unordered HTML List <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> Ordered HTML List <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <table> <table> <thead> <tr> <th>id</th> <th>name</th> <th>description</th> <th>company</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>lak lin</td> <td>my description</td> <td>ABC</td> </tr> </tbody> </table> <hr> tag <fieldset> <embed> The <figure> tag […]