- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML: Horizontal Line Tag
The horizontal line tag (<hr>) in HTML is used to create a thematic break or horizontal line to visually separate content within a webpage. It is a self-closing tag, meaning it does not have a closing tag. Here are the key points about the <hr> tag:
Usage:
- The <hr> tag is used to create a horizontal line, also known as a horizontal rule or thematic break.
- It is typically used to separate sections of content, such as paragraphs, headings, lists, or other elements, to provide visual clarity and organization.
- Example:
<p>Paragraph 1</p>
<hr>
<p>Paragraph 2</p>
Appearance:
- By default, the <hr> tag creates a horizontal line that spans the width of its containing element, such as a <div> or the entire browser window if placed directly within the <body> tag.
- The appearance of the horizontal line can be customized using CSS, such as setting its color, height, width, style (solid, dashed, dotted, etc.), and alignment.
- Example CSS for styling the <hr> tag:
<p>Paragraph 1</p>
<hr>
<p>Paragraph 2</p>
Attributes:
- The <hr> tag does not have any mandatory attributes, but it supports the align attribute (deprecated in HTML5) for horizontal alignment.
- Example with deprecated align attribute:
<hr align="center">
Semantic Meaning:
- The <hr> tag does not convey semantic meaning on its own. It is primarily used for visual separation and styling purposes rather than conveying structural or contextual information.
- It is important to use the <hr> tag judiciously and in appropriate contexts to avoid overuse and maintain readability.
Accessibility Considerations:
- When using the <hr> tag, ensure that it does not create confusion or disrupt the flow of content for users with disabilities or assistive technologies.
- Use proper spacing and context to indicate the purpose of the horizontal line, such as separating distinct sections of content.
Usage Tips:
- Use the <hr> tag sparingly and purposefully to enhance the visual organization of content, such as separating major sections or topics within a webpage.
- Consider using CSS border styles or background techniques instead of <hr> for more customized and visually appealing horizontal separators.
While the <hr> tag is a simple way to add horizontal lines to a webpage, its use should be balanced with design considerations and accessibility principles to ensure an optimal user experience.