This article mainly introduces to you the definition and usage of the hr and br tags in HTML.
The content of this article is very simple and easy to understand. Even for new HTML novices, the definition and usage of some basic tags are easy to master.
So in our HTML/css front-end interview questions, we occasionally encounter such simple questions.
Below we will introduce the definition and usage of hr and br tags with simple examples.
The tag
indicates that a simple newline character can be inserted. The
tag is an empty tag (meaning it has no closing tag, so this is an error:
). In XHTML, place the closing tag within the opening tag, i.e.
.
Label code example:
<!DOCTYPE html> <html> <meta charset="utf-8"> <title>br换行符简单示例</title> <head> </head> <body> <p>这是一段文字,一段文字,一段文字</p> <p>这是一段文字,一段文字<br>br后的一段文字</p> </body> </html>
The effect is as follows:
##Note:tag, it usually inserts some vertical spacing between adjacent paragraphs.
<!DOCTYPE html> <html> <meta charset="utf-8"> <title>hr水平分隔线简单示例</title> <head> </head> <body> <p>这是一段文字,一段文字,一段文字</p> <hr> <p>这是一段文字,一段文字</p> </body> </html>
HTML The definition and usage of the hr and br tags are very simple. I hope it will be helpful to friends in need!
If you want to learn more about front-end related knowledge, you can follow the PHP Chinese websiteHTML video tutorial, css video tutorial, Bootstrap tutorial, etc. Related tutorials, everyone is welcome to refer to and study!
The above is the detailed content of What do hr and br mean in HTML? What are the functions?. For more information, please follow other related articles on the PHP Chinese website!