HTML empty element

HTML Empty Element

An HTML element without content is called an empty element. <br />The empty element is closed within the opening tag ( ). But in HTML(5) it is okay to not close the empty tag. But if you want to do validation or read your document with an XML parser, then you must close all elements properly.
Element Description
<area> Sets the area of ​​the <map> tag.
<base> Specifies the base URL of all links used on the page.
<br> Breaks a line.
<col> <colgroup> is used to set columns in the element
<embed> Used to display embedded files, images, and plug-ins.
<hr> Creates horizontal lines to represent two sections separately.
<img> Used for displaying images.
<input> Creates an input field.
<keygen> What generator field creates.
<link> Adds an external stylesheet to the document.
<meta> Contains additional information about the document.
<param> Used to set parameters.
<source> Adds resources to the media element.
<track> Adds text tracks for media elements.
<wbr> Breaks at certain points in the word.
< br> Element

<br>The element is used to display a portion of a line on the next line or to provide a break between lines .

Example
<!DOCTYPE html>
<html>
<head>
<title>HTML br Element</title>
</head>
<body>
<p>This is a paragraph.<br>It will appear on the next line.</p>
</body>
</html>
Output
HTML br Element

This is a paragraph.
It will appear on the next line.


element

<hr>Elements are used to separate two sections .

Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Example</title>
</head>
<body>

<h3>Document Heading</h3>
<p>This is a paragraph.</p>
<hr>
<h3>Document Heading</h3>
<p>This is a paragraph.</p>

</body>
</html>
Outpput
HTML Example

Document Heading

This is a paragraph.


Document Heading

This is a paragraph.

HTML Empty Element

Leave a Comment

Your email address will not be published. Required fields are marked *