Answers for "how to display small part of a paragraph in html"

9

how to make new line in html paragraph

<p>
Will Mateson<br />
Box 61<br />
Cleveland, Ohio<br />
</p>
Posted by: Guest on April-24-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 display small part of a paragraph in html"

Browse Popular Code Answers by Language