Italic tag
HTML uses tag <i> for formatting output italic text. Inside a webpage the area we want to be italic should be within one starting and one ending italic tag.for making you easy it start with start tag and end with end tag.
How we can use it?the format of tag will be
This is normal text but <i>this part is italic text</i>. Now again normal text
italic text has different uses at different places. Means have differed quality. we can mark some special type of text in italic to say they are different than normal text.
This tag like any other html tag is not sensitive, so we can use <i> or <I>
it use to draw special attention to one or more words. Italics have a variety of other applications and the use of it is mostly flavored for our text. As some topics or lines are spiced or should be distinguish. It generally applies for titles, concerning newspapers, magazines and books etc.
<html>
<body>
<p><i>this text is italic</i><p>
<body>
<html>
Extracting italic lines or text.html use emphasis format too. Start from start tag and end from end tag. <em> </em>
it does not damage to your style sheet.the way we apply it is
<html>
<body>
<p><em>This text is emphasized</em></p>
<body>
<html>