InterviewSolution
Saved Bookmarks
| 1. |
Are the HTML tags and elements the same thing? |
|
Answer» No. HTML elements are defined by a starting TAG, may contain some content and a CLOSING tag.For example, <h1>Heading 1</h1> is a HTML ELEMENT but just <h1> is a starting tag and </h1> is a closing tag. |
|