Too much space between the lines in HTML ?

juNki3

New member
So today I started scripting and for example I write a text

"test1
test2"

In html it looks like this

"test1

test2"

And I use like this :

<p>"test1" </p>
<p>"test2"</p>

And don't reply with answers like "Write like this : "

"test1"
"test2"

because it doesn't work and appears like

"test1 test2"

And all I want to do is to make it look like

"test1
test2"

not

"test1

test2"
i use Notepad++ to script and Xampp to view what I scripted.
i tried

<br> "test1" </br>
<br> "test2" </br>

still it shows like this

"test1

test2"
 
Back
Top