Computer Science, asked by lalitajha32, 11 months ago

4. List down the several tags used in HTML coding.​

Answers

Answered by RajAnshu
3

Answer:

cin cout iostream many more etc

Answered by anakhamalutty
5

Answer:

Explanation:

HTML tag: It is the root of the html document which is used to specify that the document is html.

Syntax:

<html> Statements... </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.

Syntax:

<head> Statements... </head>

Body tag: It is used to define the body of html document. It contains image, tables, lists, … etc.

Syntax:

<body> Statements... </body>

Title tag: It is used to define the title of html document

Syntax:

<title> Statements... </title>

Content container tag:

Heading tag: It is used to define the heading of html document.

Syntax:

<h1> Statements... </h>

<h2> Statements... </h2>

<h3> Statements... </h3>

<h4> Statements... </h4>

<h5> Statements... </h5>

<h6> Statements... </h6>

Paragraph tag: It is used to define paragraph content in html document.

Syntax:

<p> Statements... </p>

Emphasis tag: It is used to renders as emphasized text.

Syntax:

<em> Statements... </em>

Bold tag: It is used to specify bold content in html document.

Syntax:

<b> Statements... </b>

Italic tag: It is used to write the content in italic format.

Syntax:

<i> Statements... </i>

Small (text) tag: It is used to set the small font size of the content.

Syntax:

<small> Statements... </small>

Underline tag: It is used to set the content underline.

Syntax:

<u> Statements... </u>

Deleted text tag: It is used to represent as deleted text. It cross the text content.

Syntax:

<strike> Statements... </strike>

Anchor tag: It is used to link one page to another page.

Syntax:

<a href="..."> Statements... </a>

.

.

.

if helped mark as brainliest!

pls!

Similar questions