InterviewSolution
Saved Bookmarks
| 1. |
Differentiate empty tags and container tag with example. |
|
Answer» 1. Empty tags: It has opening tag only, no closing tag Eg: <hr>,<br> etc 2. Container tag: It as both opening and closing tag. Eg: <html></html> <body><\body> etc. |
|