210k views
4 votes
Which HTML tag is formatted correctly? This is a heading This is a paragraph This is a paragraph This is a heading

2 Answers

5 votes

Answer:

<p> Paragraph </p> how to end the paragraph

<h> Heading </h> how to end the heading

Step-by-step explanation:

User Jack Griffin
by
8.8k points
4 votes

Answer:

See Explanation Section

Step-by-step explanation:

A question like this is best presented or supported with attachments because the attachment gives a clear description of the question.

However, I'll answer your question in general terms.

A paragraph in HTML is tagged using the <p> and </p> tag.

For instance:

<p> This is a paragraph</p>

For headings;

There are 6 level of headings in HTML; h1 to h6.

The tag to use depends on the level of the headings.

Assuming the heading is level 1;

An example is

<h1> This is a heading</h1>

Use the examples I cited to answer your question

User Jannine
by
7.8k points