Answers for "p new line as standard html"

3

html put newline in text with \n

white-space: pre-line;
Posted by: Guest on April-06-2020
-1

how to add a paragraph in html

//first add a body tag
<body>
write stuff here
</body>

//or you can do this
<body>
  <p>write stuff here</p>
</body>

//thanks for reading
Posted by: Guest on June-27-2020

Browse Popular Code Answers by Language