answersLogoWhite

0


Best Answer

<p> to create a paragraph, you do not need to end a </p> at the end of your paragraph.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What kind of tag requires only an opening tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How are opening and closing tags different?

An opening tag is used to indicate the starting point of an action by a tag. The closing tag shows when to stop this action. The front slash is added to a tag, before the tagname, to indicate that it is a closing tag. What is between the tags is effectively selected for this action. To start bolding for example, we use &lt;b&gt; and to stop we use &lt;/b&gt; as follows: This text is &lt;b&gt; bold &lt;/b&gt; text. The word bold in the above sentence would be bolded, as that is what is enclosed by the opening and closing tags. The text outside of that is as normal.


Difference between container tag and standalone tag?

A container tag has two ends (an opening and a closing) whereas an empty tag doesn't. The paragraph tag is an example of a container tag: &lt;p&gt;Our paragraph text here.&lt;/p&gt; The image tag is a good example of an empty tag. &lt;img src="logo.png" alt="Yay!"&gt; See how the initial paragraph tag (&lt;p&gt;) has a corresponding end tag? The text in between is "contained" by the tag.


What is Unpaired tag in HTML?

A tag is said to be a paired tag if the text is placed between a tag and its companion tag. In paired tags, the first tag is referred to as Opening Tag and the second tag is referred to as Closing Tag.ExampleThis text is in italics. Note: Here is called opening tag. and is called closing tag.


Which symbol is used for a closing tag in html?

The front slash is added to a tag, before the tagname, to indicate that it is a closing tag: &lt;html&gt; is an opening tag. &lt;/html&gt; is a closing tag. &lt;title&gt; is an opening tag. &lt;/title&gt; is a closing tag.


Which tag contains the visual part of a web page?

Tags usually travel in pairs. An opening tag begins a section of page content, and a closing tag ends it. For example, to markup a section of text as a paragraph, you would open the paragraph with an opening paragraph tag and close it with a closing paragraph tag (closing tags always proceed the element with a /).

Related questions

How do you center text on deviantart?

"Center TextThe opening tag for centering is , and the closing tag is . If you do not use the closing tag, then all text after the opening tag will be displayed centered."


How are opening and closing tags different?

An opening tag is used to indicate the starting point of an action by a tag. The closing tag shows when to stop this action. The front slash is added to a tag, before the tagname, to indicate that it is a closing tag. What is between the tags is effectively selected for this action. To start bolding for example, we use &lt;b&gt; and to stop we use &lt;/b&gt; as follows: This text is &lt;b&gt; bold &lt;/b&gt; text. The word bold in the above sentence would be bolded, as that is what is enclosed by the opening and closing tags. The text outside of that is as normal.


What kind of tag games are there?

Freeze tag, line tag, cartoon tag, mars tag and normal tag.


What is the best kind of j tag you can get?

The best kind of j tag you can get is a Zenon


Difference between container tag and standalone tag?

A container tag has two ends (an opening and a closing) whereas an empty tag doesn't. The paragraph tag is an example of a container tag: &lt;p&gt;Our paragraph text here.&lt;/p&gt; The image tag is a good example of an empty tag. &lt;img src="logo.png" alt="Yay!"&gt; See how the initial paragraph tag (&lt;p&gt;) has a corresponding end tag? The text in between is "contained" by the tag.


What is Unpaired tag in HTML?

A tag is said to be a paired tag if the text is placed between a tag and its companion tag. In paired tags, the first tag is referred to as Opening Tag and the second tag is referred to as Closing Tag.ExampleThis text is in italics. Note: Here is called opening tag. and is called closing tag.


Which symbol is used for a closing tag in html?

The front slash is added to a tag, before the tagname, to indicate that it is a closing tag: &lt;html&gt; is an opening tag. &lt;/html&gt; is a closing tag. &lt;title&gt; is an opening tag. &lt;/title&gt; is a closing tag.


Which tag contains the visual part of a web page?

Tags usually travel in pairs. An opening tag begins a section of page content, and a closing tag ends it. For example, to markup a section of text as a paragraph, you would open the paragraph with an opening paragraph tag and close it with a closing paragraph tag (closing tags always proceed the element with a /).


What is an empty tag?

An empty tag is a tag that contains no element or attributes. For example: Text The bold is the element and the italic is the attribute. An empty tag doesn't contain either, and rather than an opening and a closing tag, it is just one tag, for example:


What is the name of the additional information placed inside a tag that controls how the tag is used?

The information contained within the opening portion of an HTML tag that controls various attributes of the tag is called the tags "attributes."Attributes follow the format attribute="value" and are added to the tag after it's opening. For instance:In this case, the image tag has two attributes, the src attribute and the alt attribute. The values of those attributes are "a.png" and "A" respectively.


What is the opening and closing tag for bold command in HTML?

&lt;b&gt;example&lt;/b&gt;


Is Slash is used to create a closing tag?

Yes. &lt;FORM&gt; is the opening tag whereas &lt;/FORM&gt; is the closing tag. This &lt;/TAG&gt; to close tags is applicable for most tages. ex: &lt;HTML&gt; &lt;/HTML&gt; &lt;BODY&gt; &lt;/BODY&gt; etc...