Demo of Managing italic Tag with font colour using Internal style




Normat text This is italic text. Normal text again


HTML

Normat text <i>This is italic text</i>. Normal text again

Style

<style>
i { 
 font-size: 40px;
 color:green;
}
</style>
<html>
<head>
<title></title>
<style>
i { 
 font-size: 40px;
 color:green;
}
</style>
</head>
<body>

Normat text <i>This is italic text</i>. Normal text again

</body>
</html>