html bold and italic code example

Example 1: html italic text

<i>This text will be in italics</i>

Example 2: html bold text

<html>
 <head>
   <title>Bold text</title>
 </head>
 <body>
   <p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
 </body>
</html>

Example 3: how to make html text italic

<!-- To make text italic in HTML -->
<p> You have to use <em> To make you text italic instead of </em> 
  <i> because this tag styles the text to be italic not changes real text</i> </p>

Example 4: how to write a text in html

<p> this is a text  </p> <!--paragraph text-->

Example 5: html text bold

<b>This is bold text.</b>
<strong>This is emphasized bold text.</strong>

Tags:

Css Example