Which of the following tag in HTML is used to surround information, such as…
2016
Which of the following tag in HTML is used to surround information, such as signature of the person who created the page ?
- A.
<body></body>
- B.
<address></address>
- C.
<strong></strong>
- D.
<em></em>
Attempted by 230 students.
Show answer & explanation
Correct answer: B
Correct tag: <address></address> is used to enclose contact information or the signature of the person who created the page.
Key points:
Use the <address> element for author or contact details such as name, email, or physical address. It is semantically intended for contact information.
The <body> element contains the main content of the page, not author signature or contact info.
The <strong> element indicates strong importance (typically renders bold) and is not intended for contact information.
The <em> element denotes emphasis (typically renders italic) and is also not used for author signatures.
Example: <address>Jane Doe, jane@example.com</address>