Closing an HTML Element

Q

How To Close an HTML Element?

✍: FYIcenter.com

A

In XHTML syntax, every HTML element must be closed. There are two ways to close an HTML element:

  • Using a closing tag, which is the element name prefixed with "/" and enclosed in a pair of angle brackets: "<" and ">".
  • Closing the opening tag immediately by placing "/" before the ending bracket: ">".

Here are some good examples of closing XHTML elements:

  • <html>...</html>- Closing the "html" element with a closing tag.
  • <head>...</head> - Closing the "head" element with a closing tag.
  • <title/> - Closing the "title" element immediately with no content.
  • <body>...</body> - Closing the "body" element with a closing tag.
  • <p>...</p> - Closing the "p" element with a closing tag.
  • <script/> - Closing the "script" element immediately with no content.

 

Closing XHTML 'br' Tags

The Opening Tag of an HTML Element

HTML Tag and Attribute Syntax

⇑⇑ HTML Tutorials

2024-03-23, 1239🔥, 0💬