Html tags by category
HTML Taga By Category Basic HTML Tags <!DOCTYPE> Defines the HTML document type. <html> Defines an HTML document. <head> Contains metadata for the HTML document. <title> Defines a title for the HTML document. <body> Defines the HTML document's body. <h1> <h2> <h3> <h4> <h5> <h6> Defines HTML headings <p> Create a paragraph. <br> Create a single line break. <hr> Create horizontal line in the content. <!--...--> Specifies comment, this comment won't show up on the page. FORMATTING TAGS <acronym> Not supported in HTML5. Use <abbr> instead. Defines an acronym. <abbr> Defines an abbreviation or an acronym in HTML document. <address> Defines contact information for the author of a html document. <b> Create bold text in HTML document. <bdi> Used to provide isolation for that part of text which may be formatted in different directions from other text outside in...