HTML <br> 換行標籤 (tag)

在 HTML 文件中不是用 \n (new line) 來換行,而是用 <br> 來做內容換行 (line break) 的效果。

\n 在 HTML 網頁中會顯示成一個空白字元,不是換行。

舉個使用例子:

<p>To force<br> line breaks<br> in a text,<br> use the br<br> element.</p>

呈現在網頁中的效果會像是下面這樣子:

To force
line breaks
in a text,
use the br
element.

<br> 是個空元素不需要 closing tag。