0
How is container tage
Html
4 odpowiedzi
+ 5
Container tags are those tags which have both opening and closing tags. This includes tags like:
<p></p>, <button></button>, <div></div>
Here, you can see each tags have a pair, one for opening and one for closing. Like <p> is the opening tag for paragraph text, and </p> is the closing tag for it.
If you have any other questions about this, you can ask it here.
+ 5
Hello, Umesh Sahu!
We have a search bar in our Q&A Discussions for finding some conventional questions that already been asked. Actually container is not a tag. Moreover it is a well known class name in web development and can be replaced too. Here, I attached a few previous threads that already made by and discussed on it; Enjoy, and happy learning.
https://www.sololearn.com/Discuss/2598476/?ref=app
https://www.sololearn.com/Discuss/1716273/?ref=app
https://www.sololearn.com/Discuss/1018704/?ref=app
https://www.sololearn.com/Discuss/1759585/?ref=app
+ 2
Umesh Sahu I see you are recently learning web development, well there is no specific tag named container but there are many container based tags such as div. If you have any further questions you can mention here.
Happy coding!!
0
Container tags are
<body>
<div id="div is also an example of container tag">
<p>tags with an end like this</> is a container tag</p>
<h1>body and h1 to h6 are examples of container tags</h1>
<p>some tags are called empty tags like this one <br> another example of empty tag is <hr></p>
<h1>empty tags don't have an end tag</h1>
<p>hope this helps :)</p>
</div>
</body>