How do you add an indent to an html code?
Dragon Spirit asked:
I’m trying to make a web page but I’ve yet to learn how to make indents. And I want to get this site up soon> It’s mostly indenting what people say like in a fanfic, so could some one help me out?
I’m trying to make a web page but I’ve yet to learn how to make indents. And I want to get this site up soon> It’s mostly indenting what people say like in a fanfic, so could some one help me out?

Load the HTML code into Netscape composer.
You can indent by using the tab key or increase the margin. Netscape does it for you (and if you like, you can look and see what the HTML code is which Netscape will generate for you!)
The easiest way is Your indented text here.
Alternatively define a CSS class for the indent
.indent {padding-left:10px;}
Your text here
You can use a non breaking space & nbsp ; (With no spaces)
It’s best to use CSS: style=”text-indent: 10px;”
If it’s an enter paragraph you could do this:
p
{
text-indent: 20px
}
here is the W3 Schools text indent reference page