Previous | Home | Next |
CSS code for this is given below-
<style type="text/css"> .ItalicStyle { font-family: Verdana, Arial, Helvetica, sans-serif; font-style: italic; color: #FF0000; } </style>
for activating this 'style operation', we need to insert this code in between the <head></head> tags at the top of your web page. Here we make a class named ItalicStyle and inside this class i have mentioned the font-family, font-style and color for font.In order to make italic font we use font-style:italic in css.
Previous | Home | Next |