亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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)(ipnx.cn)</title> </head> <body> <p>這個(gè)<br>段落<br>演示了分行的效果</p> </body> </html>
submitReset Code