116k views
0 votes
Which HTML tag is formatted correctly? This is a heading This is a heading This is a title This is a paragraph

User NifCody
by
5.5k points

2 Answers

6 votes

Answer:

A, the first one

<h1>This is a heading</h1>

hope this helps :)

User Eugenekr
by
5.8k points
3 votes

Answer:

The tags must be formatted:

<h1> This is a heading </h1>

<h1> This is a heading </h1>

<title>This is a title</title>

<p>This is a paragraph</p>

Step-by-step explanation:

You always need a start tag <> and an end tag </>. Depending on what you want in the tag is up to you. If you want a title, then the tag is <title> at the start and </title> at the end.

User Dragon Warrior
by
4.8k points