Italic tag gives the Italic font-style in HTML.
Generally Italic style is a calligraphic handwriting.
Italic tag is also a span type.
Syntax:
<i>.......</i>
- It attracts the user . It is also a cursive writing.
- Italics are used to naming plants, animals, binomial nomenclatures, scientific names, physics theories and etc.
Now we create italic style using <i>
Example:
- <i>Hibiscus rosa-sinensis</i> -output- Hibiscus rosa-sinensis.
- <i>Solanum tuberosum</i> -output-Solanum tuberosum.
- <i>"For an every action ,there is a opposite reaction"</i> -output-"For an every action ,there is a opposite reaction".
Code:
<!DOCTYPE html>
<html>
<head>
<title>Italics tag</title>
</head>
<body>
<i>Nicolas Tesla</i><br>
<i>Albert Einstein</i><br>
<i>Musa paradisiaca</i><br>
</body>
</html>
Post a Comment