Open In App

HTML DOM Italic Object

Improve
Improve
Like Article
Like
Save
Share
Report

The Italic Object in HTML DOM is used to represent the HTML <i> element. This tag is used to display the content in italic style. The <i> element can be accessed by using the getElementById() method.

Syntax: 

document.getElementById("id"); 

Where id is assigned to the <i> tag.

Example 1: In this example, we will use Italic Object in HTML DOM.

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Italic Object
    </title>
</head>
   
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM italic Object</h2>
    <p>
        A <i id="italic_ele">computer science</i>
        portal for geeks.
    </p>
    <button onclick="Geeks()">
        Click Here
    </button>
    <script>
        function Geeks() {
            let txt = document.getElementById("italic_ele");
            txt.style.color = "green";
        }
    </script>
</body>
</html>


Output: 

 

Example 2: Italic Object can be created by using the document.createElement method. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Italic Object
    </title>
</head>
   
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM italic Object</h2>
    <button onclick="Geeks()">
        Click Here!
    </button>
    <br><br>
    <div>
        A <span id="p"></span>
        portal for geeks.
    </div>
    <script>
        function Geeks() {
            let txt = document.createElement("I");
            let t = document.createTextNode("computer science");
            txt.appendChild(t);
            document.getElementById("p").appendChild(txt);
        }
    </script>
</body>
</html>


Output: 

 

Supported Browsers:

  • Opera
  • Internet Explorer
  • Google Chrome
  • Firefox
  • Apple Safari


Last Updated : 14 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads