HTML I <i> Tag
0 3366
The HTML I <i> tag is used for the text to describe its font. The data of the <i> tag is visible in the italic type in the browser.
It will be useful to represent some technical terms, phrases, etc.
Program:
<!DOCTYPE html>
<html>
<head>
<title> i Tag</title>
<style>
p{
color: red;
}
i{
color: green;
}
</style>
</head>
<body>
<h2>Example of HTML i tag</h2>
<p>Codingtag is a <i>Technical Website.</i> </p>
</body>
</html>
Output:
Share:
Comments
Waiting for your comments