1<!--
2 You have 2 options
3-->
4<i>This text is the original italic</i>
5<em>This is actually emphasising a phrase, but will do just the same</em>
1/* I know i already made a HOW TO MAKE CSS TEXT ITALIC but here's one
2100% css */
3#italic-selector {font-style:italic;}
1<style>
2#italic{
3 font-style: italic;
4 } </style> <p id="italic">This is my italic text. :)</p>