Advertisement

Advertisement banner

Advertisement

Advertisement banner

Advertisement

Advertisement banner
Neha goyal's avatar
Sep 11, 2023•education

What types of Tags are used in HTML?

2 Answers
1

avatar
@pandeychandan1725•Sep 7, 2023

HTML (Hypertext Markup Language) employs various tags to structure web content. Heading tags, from <h1> to <h6>, define headings and subheadings. <p> tags are for paragraphs, while <a> tags create hyperlinks. Images are embedded with <img> tags, and lists utilize <ol>, <ul>, and <li> tags. Division tags, <div> and <span>, group and style elements and tables are constructed using <table>, <tr>, <td>, and <th> tags. Forms are created with <form>, <input>, <textarea>, and <button> tags. The header, footer, and navigation sections are defined by <header>, <footer>, and <nav> tags. <meta> tags provide metadata, while <style> and <script> tags include CSS and JavaScript, respectively. These tags are essential for crafting structured and formatted web content.

Letsdiskuss

Also Read- What is Mark up Language?

0
React
avatar
@finacussolutions2701•Sep 8, 2023

In HTML (Hypertext Markup Language), tags are used to structure and format content on webpages. There are two main types of tags: structural tags and formatting tags. Structural tags define the overall structure of a webpage and include elements like <html>, <head>, <title>, <body>, and <div>. Formatting tags, on the other hand, control the presentation and appearance of content and include elements such as <p> for paragraphs, <h1> to <h6> for headings, <a> for links, <em> for emphasizing text, <strong> for strong importance, and many more. These tags work together to create the structure and style of web content, allowing web developers to design and display information effectively on websites.

Article image

0
React