HTML Text Formatting Tutorial - Italic Text
Description:
How to make italic text in an html page.
Code:
<html>
<body>
This is normal text.
<i>This is italic text.</i>
This is normal and <i>this is italic</i> text.
</body>
</html>
Play with the code:
See working example:
Explanation:
To make italic text in an html page, you just have to surround the text you want italic in the <i></i> tags.
See Also:
HTML: Html, Body, I
|