Html Tags List With Description
HTML Tags List with Descriptions: A Comprehensive Guide
HTML (Hypertext Markup Language) is language for creating
web sites and applications. It uses tags to define the structure and content of
a website. In this article, we will provide a comprehensive and
easy-to-understand guide to commonly used HTML tags along with their
descriptions.
1. : Specifies the document type and version of HTML being
used.
The `` declaration is an important part of an HTML document.
It specifies the version of HTML being used and helps the browser understand
how to render the webpage correctly.
2. : Defines the root element of an HTML document.
The `` tag serves as the root element of an HTML document.
It encapsulates the entire content of the webpage.
3. : Contains meta-information about the HTML document.
The `` tag is used to define the head section of an HTML
document. It contains meta-information about the webpage, such as the title,
scripts, and stylesheets.
4. : Sets the title of the webpage.
The `` tag specifies the title of an HTML document, which
appears in the browser's title bar or tab.
5. : Encloses the main content of the webpage.
The `` tag encloses the main content of an HTML document. It
represents the body of the webpage that users see when they visit a site.
6. to : Represents
heading levels.
The `` to `` tags are used to define headings of different
levels in HTML. `` represents the highest level heading, while `` represents
the lowest level.
7. : Defines a paragraph .
The `` tag is used to define a paragraph of text. It is
commonly used to structure and format blocks of text.
8. : Creates a hyperlink.
The `` tag creates hyperlinks in HTML. It allows you to link
to another webpage, a specific section within the same page, an email address,
or a downloadable file.
9. : Inserts an image into the webpage.
The `` tag is used to insert an image into an HTML document.
It requires the `src` attribute, which specifies the source (URL) of the image
file.
10. : Defines an unordered list.
The `` tag is used to define an unordered list in HTML. It
represents a list of items that don't have a specific order or sequence.
11. : Defines an ordered list.
The `` tag is used to define an ordered list in HTML. It
represents a list of items that have a specific order or sequence.
12. : Represents a list item.
The `` tag is used to define a list item within an ordered
or unordered list.
13. : Defines a division in an HTML document.
The `` tag is a versatile container used to define divisions
or sections within an HTML document. It is often used to group and style
related content.
14. : Inline container used for grouping text or inline
elements.
The `` tag is an inline container used for grouping text or
other inline elements. It is typically used to apply styles or add hooks for
JavaScript and CSS.
15. : Creates a table for organizing data.
The `` tag is used to make a table in HTML. It allows you to
make data into rows and columns.
16. : Defines a table row.
The `` tag is used to define a row within an HTML table.
17. : Defines a table cell.
The `` tag is used to define a cell within
an HTML table. It
represents a data cell within a row.
18. : Defines a table header cell.
The `` tag is used to define a header cell within an HTML
table. It represents a header or label for a column or row.
19. : Creates an interactive form for user input.
The `` tag is used to create an interactive form in HTML.
Forms allow users to input data, such as text, selections, or file uploads.
20. : Creates an input field within a form.
The `` tag is used to create various types of input fields
within an HTML form. It allows users to enter data, such as text, numbers,
checkboxes, radio buttons, or file uploads.
21. : Creates a multiline text input field.
The `` tag is used to create a multiline text input field
within an HTML form. It allows people to enter multiple lines of text.
22. : Creates a clickable button.
The `` tag is used to create a clickable button within an
HTML form.
23. : Creates a dropdown list.
The `` tag is used to create a dropdown list in HTML. It
allows people to select one option from a list.
24. : Defines an option in a dropdown list.
The `` tag is used to define an option within a dropdown
list.
25. : Represents a label for an input field.
The `` tag is used to create a label for an input field in
HTML.
26. : Groups related form elements together.
The `` tag is used to group related form elements together.
27. : Provides a caption or title for a .
The `` tag is used to provide a caption or title for a ``
element.
28. : Represents the header section of a document or a
section.
The `` tag is used to define the header section of an HTML
document or a specific section within the document.
29. : Defines a container for navigation links.
The `` tag is used to define a container for navigation
links in HTML.
30. : Represents the footer section of a document or a
section.
The `` tag is used to define the footer section of an HTML
document or a specific section within the document.
Comments
Post a Comment