国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML line break

This example demonstrates:

The effect of displaying branch lines in html.

Example analysis:

The branch is defined through the <br> tag, as follows:

<p>This<br>paragraph<br> demonstrates the effect of branching</p>

If you want to To wrap a new paragraph (new line), use the <br> tag:

##<br /> The element is an empty HTML element. Since a closing tag doesn't make any sense, it doesn't have a closing tag.


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(miracleart.cn)</title> </head> <body> <p>這個(gè)<br>段落<br>演示了分行的效果</p> </body> </html>
submitReset Code