Why use <i> ?
When we need to write italic inside a paragraph tag or other tags. Then used <i> . How to use it <i> Text which we want to make it italic </i>
Syntax:
<p>
Hay hello web <i>developer</i> !!!.
</p>
Example:
<!DOCTYPE html>
<html >
<head>
<title>Basic get in </title>
</head>
<body>
<p>
Hay hello web <i>developer</i> !!!.
</p>
</body>
</html>
Output:
Post a Comment