[help] How Do I Indent In Html?

I am not very good at webdesign, I admin. My site was designed by a good friend of mine.

The only thing I dois the content in HTML. Today I have a question. How do I indent in HTML? I mean on my site bearign my name I don't want to write like a slob. Or do I (JUST KIDDING)?

Thanks,

#127221

Topic Moved.

HTML questions should go in the Web Development forum.

------------------

Stevie BM

Oh, and what sort of indent do you mean?

Typically, in screen-based media, leading indents on paragraphs aren't "done".

Be a lil' more specific, and we can give you better assistance.

#127224

Indents in paragraphs. See I am somewhat of an aspiring writer, and I have to use proper grammar skills on my site or no one will want to hire me.

(Flarex no comments please on this thread....)

#127228

Well, you can use repetative " " without the quotes to have a single line indentation, or the "

#127239

Indentation of paragraphs on a web page has nothing to do with grammar.

Further to that, whilst grammar et al. is fairly important, a good editor/publisher can see past poor spelling and grammar and see a good writer.

Focus more on developing your style of writing and your ability, rather than how you're presenting your work.

If the work is good, the presentation won't matter quite so much.

To do it, though, just set text-indent to a positive value in your style sheet for paragraphs as follows:

p {
text-indent: 2em;
}

#127246