0% found this document useful (0 votes)
1 views

HTML+tags

html tags

Uploaded by

SRINIVASAN .P
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views

HTML+tags

html tags

Uploaded by

SRINIVASAN .P
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Certainly!

Here's a list of commonly used HTML tags:

1. <html>: Represents the root element of an HTML document.

2. <head>: Contains meta-information about the HTML document, such as the title and linked
stylesheets.

3. <title>: Defines the title of the HTML document displayed in the browser's title bar or tab.

4. <body>: Contains the visible content of the HTML document.

5. <h1> to <h6>: Defines headings of different levels, with <h1> being the highest and <h6> the
lowest.

6. <p>: Defines a paragraph.

7. <a>: Creates a hyperlink to another web page or resource.

8. <img>: Embeds an image into the HTML document.

9. <ul>: Defines an unordered (bulleted) list.

10. <ol>: Defines an ordered (numbered) list.

11. <li>: Represents a list item within <ul> or <ol>.

12. <div>: Defines a division or a container for grouping other HTML elements.

13. <span>: Defines a span of text within a larger block of content.

14. <table>: Represents a table with rows and columns.

15. <tr>: Defines a row within a table.

16. <td>: Defines a table cell within a row.

17. <form>: Represents a form for user input.

18. <input>: Defines an input field within a form.

19. <button>: Creates a clickable button.

20. <textarea>: Defines a multi-line text input control.

These are just a few examples of HTML tags. There are many more tags available for various
purposes, such as styling, layout, multimedia, and semantic structure. The choice of tags depends on
the content and structure you want to create on your webpage.

You might also like