comment sauter la ligne en html

it can be done by various ways.

For example if you want to insert a new line in a text area, you can use these:


 line feed and 
 carriage return, used like this:

<textarea>Hello &#10;&#13;Stackoverflow</textarea>

You can also use <pre>---</pre> preformatted text like this:

<pre>
  This is line 1
  This is line 2
  This is line 3
</pre>

Or you can use a <p>----</p> paragraph tag like this:

<p>This is line 1</p>
<p>This is line 2</p>
<p>This is line 3</p>
  
<p>This is line 1</p>
<p>This is line 2</p>
<p>This is line 3</p>
Xabos