Html

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 […]

HTML is the standard markup language for creating Web pages. HTML consists of a series of elements. HTML elements tell the browser how to display the content. Example Explained The <!DOCTYPE html> declaration defines that this document is an HTML5 document The <html> element is the root element of an HTML page The <head> element contains meta information about the HTML […]