Open In App

How to define a part of text in an alternate voice or mood using HTML5 ?

In this article, we define a part of a text in an alternate voice or mood by using the <i> tag in the HTML document. It is used to display the content in the italic style. Generally, it is used to display the technical term, phrase, or important words of some different language or technology.

Syntax:



<i> Contents... </i>

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to define a part of text
        in an alternate voice or mood 
        using HTML5?
    </title>
  
    <style>
        body {
            text-align: center;
        }
  
        h1 {
            color: green;
        }
    </style>
</head>
  
<body>
    <i>
        <h1>GeeksforGeeks</h1>
    </i>
    <h2>
        <i>
            How to define a part of 
            text in an alternate voice 
            or mood using HTML5?
        </i>
    </h2>
  
    <p>
        The text content are 
        in italic font.
    </p>
      
    <i>
        It is computer science 
        portal for Geeks
    </i>
</body>
  
</html>                  

Output:

Supported Browsers are listed below:




Article Tags :