[help] How Do I Indent In Html?
Rate Topic:




-
Group:
Member
-
Posts:
146
-
Joined:
02-January 04
Posted 10 March 2004 - 10:46 PM
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,
0
-
Group:
Member
-
Posts:
2,243
-
Joined:
04-May 03
Posted 10 March 2004 - 10:50 PM
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.
0
-
Group:
Member
-
Posts:
146
-
Joined:
02-January 04
Posted 10 March 2004 - 10:53 PM
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....)
0
-
Group:
Member
-
Posts:
4,351
-
Joined:
07-January 03
Posted 10 March 2004 - 11:06 PM
Well, you can use repetative " " without the quotes to have a single line indentation, or the "
" tags to block text together.
0
-
Group:
Member
-
Posts:
2,243
-
Joined:
04-May 03
Posted 10 March 2004 - 11:12 PM
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;
}
0