CSS Style vs. HTML Style?

Pedobear

New member
I am sure it's an interesting question,

What would be better?
for example:
to align a paragraph to the right you can HTML:
<p align="right"> blah blah blah </p>

or you can CSS:
<p style="text-align: right;">

I don't know what's best (by best I mean faster or with more advantages etc.)
My guess is it doesn't matter if you use external CSS but if you use the style attribute maybe it's faster because you don't need to approach any other file (if you use the HTML you will approach html.css which for firefox for example you can find in Mozilla Firefox\res\html.css)

What's your opinion?
 
I suggest you start using css. That's the preferred way.

Check out iAmAnArtist.com for help or hire someone like a freelance programmer to do it for you.
 
Back
Top