Double new line in html

To create a double new line in HTML, you can use the <br> tag twice:

<br><br>

Alternatively, you can use the <p> tag with an empty paragraph:

<p></p>

Or, you can use the &nbsp; entity to create a non-breaking space, followed by another &nbsp; entity:

&nbsp;&nbsp;

Note that the &nbsp; entity is not as widely supported as the <br> tag, but it can be used as a fallback in certain situations.

It's also worth noting that if you're using HTML5, you can use the <br> tag with the multiple attribute set to true to create multiple new lines:

<br multiple="true">

This will create a single new line, but you can repeat the tag to create multiple new lines:

<br multiple="true"><br multiple="true">