Essential HTML tags
Essential HTML tags
1 Introduction
HTML (HyperText Markup Language) is the standard language for creating web
pages. Below is a comprehensive list of HTML tags along with their descriptions.
1
• <u> - Underlines text.
• <mark> - Highlights text.
• <small> - Displays smaller text.
• <del> - Displays deleted text (strikethrough).
2
5 Lists
• <ul> - Defines an unordered list (bulleted list).
• <ol> - Defines an ordered list (numbered list).
• <li> - Defines a list item inside <ul> or <ol>.
• <dl> - Defines a description list.
• <dt> - Defines a term in a description list.
• <dd> - Defines a description of a term in a description list.
6 Tables
• <table> - Defines a table.
• <tr> - Defines a table row.
• <td> - Defines a table cell (data).
• <th> - Defines a table header cell.
• <thead> - Groups the header content in a table.
• <tbody> - Groups the body content in a table.
• <tfoot> - Groups the footer content in a table.
• <caption> - Defines a table caption.
• <colgroup> - Specifies a group of columns in a table.
• <col> - Specifies column properties for each column within a <colgroup>.
3
8 Div and Span
• <div> - A block-level container used for grouping elements.
• <span> - An inline container used for styling parts of text.
9 Semantic Elements
• <header> - Represents the header section of a page.
• <nav> - Represents navigation links.
• <section> - Defines a section in a document.
10 Conclusion
This document covers a broad set of essential HTML tags useful for structuring,
formatting, and enhancing web pages.