Question:
how do i give space on first line of paragraph in HTML?
anonymous
2007-04-23 18:59:26 UTC
i put a web page on internet coded in html but how do i give space in first line to make it paragraph format ? thank uuuuuuuuuuu
Three answers:
anonymous
2007-04-24 00:11:24 UTC
space in HTML is declared as & nbsp;

(no space after &)

Try this

& nbsp;& nbsp;My Paragraph
tkron31
2007-04-24 02:08:16 UTC
Try the
or

tags for each paragraph, they give you a space between paragraphs.

anonymous
2007-04-24 02:11:54 UTC
This is what I put in my CSS style to do it.



p {

text-indent: 1cm;

}


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...