Computer Science, asked by piyushmahipal32, 9 months ago

Write the tags used in HTML to insert headings and paragraph in a webpage.

Answers

Answered by DrNykterstein
1

To Insert Heading:

use <h1> ... <h6> tags

Example:

 &lt;h1&gt; H1 tag &lt;/h1&gt;

 &lt;h2&gt; H2 tag &lt;/h2&gt;

 &lt;h3&gt; H3 tag &lt;/h3&gt;

 &lt;h4&gt; H4 tag &lt;/h4&gt;

 &lt;h5&gt; H5 tag &lt;/h5&gt;

 &lt;h6&gt; H6 tag &lt;/h6&gt;

To insert paragraph

Use <p> tag

Example:

 &lt;p&gt; paragraph tag &lt;/p&gt;

Answered by Anonymous
1

Answer:

H1 Tags

Hope it will be helpful :)

Similar questions