Webmaster Computer Resources Help And Learn To Earn Ideas!
I need to style a paragraph or a separate line flush right and italic using HTML? What are the tags?
Thanks fro teaching!
Comments (2)
to italicize a text use tags.
for example: YOUR TEXT HERE WILL BE ITALICS
to flush it right, use these tags.
YOUR TEXT HERE
If you want both, do this. TEXT HERE
hope this helps!
Here’s the standards-compliant way to do this:
In your stylesheet or style declaration:
.myline { text-align: right; font-style: italic; }
In your markup:
Some text, blah blah.
You can also use the tag for italics:
Some italic text
Note that the tag and the align attribute in the previous answers are deprecated.
Here’s some good information and tutorials on valid, standards-compliant html and css:
You must be logged in to post a comment.
Welcome to WebmasterTechs.com, your source for great webmaster resources and tips! Enjoy the site!
October 12th, 2007 at 2:07 am
to italicize a text use tags.
for example:
YOUR TEXT HERE WILL BE ITALICS
to flush it right, use these tags.
YOUR TEXT HERE
If you want both, do this.
TEXT HERE
hope this helps!
October 13th, 2007 at 1:49 pm
Here’s the standards-compliant way to do this:
In your stylesheet or style declaration:
.myline {
text-align: right;
font-style: italic;
}
In your markup:
Some text, blah blah.
You can also use the tag for italics:
Some italic text
Note that the tag and the align attribute in the previous answers are deprecated.
Here’s some good information and tutorials on valid, standards-compliant html and css: