in other tag there is / before it ..but why not for horizontal lines ... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

in other tag there is / before it ..but why not for horizontal lines ...

about other tags and for horizontal

8th May 2018, 3:13 AM
anjit pariyar
anjit pariyar - avatar
1 Answer
+ 4
There are two types of tag : 1. Container tag 2. Empty tag A container tag is one which has to be closed and an empty tag does not need to be closed. The container tag always wraps around text or graphics. Empty tags do not have to be wrapped around text and do not require a closing. CONTAINER TAG (Closing is Required) <html> is the Opening tag </html> is the Closing tag <a href=""> is the opening tag </a> is the closing tag EMPTY TAG (No Closing Required) <img src=""> <br> <hr>
8th May 2018, 4:02 AM
Rusty.Metal