explaining some tags.. creating a table and used tags...
Heading tag:- The <h1> to <h6> tags are used to define HTML headings . <h1> defines the most important heading. <h6> defines the least important heading. Note: Only use one <h1> per page - this should represent the main heading/subject for the whole page. Also, do not skip heading levels - start with <h1> , then use <h2> , and so on. The HTML code for a blog heading tag would be: html <h1>My Blog Title</h1> This would display the text "My Blog Title" in a large, bold font at the top of the blog post or page. The <h1> tag is the highest level heading tag in HTML and is typically used for the main title of a page or section. Other heading levels, such as <h2> and <h3>, can be used for subheadings and section titles. Proper use of heading tags not only helps to organize content on a page, but also assists with search engine optimization and accessibility for users with screen readers. paragraph tag:- The pa...