<br>


فاصل سطر يُستخدم لإنشاء بداية سطر جديد داخل النص.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>BR Element Example</title>

</head>

<body>

<p style="font-size: 16px; color: #333;">

This is the first line.<br>

This is the second line.

</p>

<!-- Example with inline style on the <br> element (note: styling <br> is rarely needed) -->

<p style="font-size: 16px; color: #333;">

First line with extra spacing.<br style="line-height: 2;">

Second line with extra spacing.

</p>

</body>

</html>

BR Element Example

This is the first line.
This is the second line.

First line with extra spacing.
Second line with extra spacing.