InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between HTML elements and tag ? |
Answer»
The HTML document is a text document which can be opened with any text editor in a computer. When we open the document we see that there are many tags used to BUILD the document. These Tags are actually keywords SURROUNDED by angled brackets and each one of them describes an element. Most of the tags have opening and closing tags
Keywords used to format a web-browser are known as tags. Example: (START Tag) <p>...</p> (End Tag).
When content is inserted between the Start Tag and End Tag this is known as Element. Example: (Start Tag) <p>This is element of HTML</p> (End Tag). |
|