Write the uses of following tags in HTML:
21. : _________
22. : _______
23. : _________
24. : ___________
25. : ____________
Answers
Answer:
Document structure tag:
HTML tag: It is the root of the html document which is used to specify that the document is html.
Head tag: Head tag is used to contain all the head element in the html file. It contains the title, style, meta, … etc tag.
Body tag: It is used to define the body of html document. It contains image, tables, lists, … etc.
Title tag: It is used to define the title of html document.
Content container tag:
Heading tag: It is used to define the heading of html document.
Paragraph tag: It is used to define paragraph content in html document.
Emphasis tag: It is used to renders as emphasized text.
Bold tag: It is used to specify bold content in html document.
Italic tag: It is used to write the content in italic format.
Small (text) tag: It is used to set the small font size of the content.
Underline tag: It is used to set the content underline.
Deleted text tag: It is used to represent as deleted text. It cross the text content.
Anchor tag: It is used to link one page to another page.
List tag: It is used to list the content.
Ordered List tag: It is used to list the content in a particular order.
Unordered List tag: It is used to list the content without order.
Comment tag: It is used to set the comment in html document. It is not visible on the browser.
Scrolling Text tag: It is used to scroll the text or image content.
Center tag: It is used to set the content into the center.
Font tag: It is used to specify the font size, font color and font-family in html document.
Empty (Non-Container) Tags:
Line break tag: It is used to break the line.
Image tag: It is used to add image element in html document.
Link tag: It is used to link the content from external source.
Horizontal rule tag: It is used to display the horizontal line in html document.
Meta tag: It is used to specify the page description. For example: last modifier, authors, … etc.
Tables Tags: Table tag is used to create a table in html document.
Tr tag: It is used to define row of html table.
Th tag: It defines the header cell in a table. By default it set the content with bold and center property.
Td tag: It defines the standard cell in html document.
Input Tags:
Form tag: It is used to create html form for user.
Submit input tag: It is used to take the input from the user.
Dropdown option tag: It is used to select an option froma drop-down list.
Radio button tag: It is used to select only one option from the given options.