Answers for "how to create a line para in html"

3

html newline

1st line
<br>
2nd line
Posted by: Guest on June-16-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

Code answers related to "how to create a line para in html"

Browse Popular Code Answers by Language