html italic

HTML
<!--Italic text, without any extra importance-->
<i>I'm a content</i>

<!--Emphasized italic text, with added semantic importance-->
<em>I'm another content</em><i>This text will be in italics</i>Talk<p>This is normal text - <b>and this is bold text</b>.</p>
 <html>
 <head>
   <title>Italic Text</title>
 </head>
 <body> 
   <p>Use the em element to <em>indicates emphasized</em> content.</p>
 </body>
</html>
Source

Also in HTML: