Html Italic Tag
Html italic tag: It adds italic style to the texts in between the tags.
Syntax of Html italic tag
<i>text.</i>
Html italic tag
Example
<!DOCTYPE html> <html> <head> <title>Title</title> </head> <body> <p>Without italic Tag : This is paragraph without italic texts.</p> <p><i>Italic Tag : This is paragraph with italic texts.</i></p> </body> </html> |
Output :
Html Emphasized tag
Example
<!DOCTYPE html> <html> <head> <title>Title</title> </head> <body> <p>Without Emphasized Tag : This is paragraph without Emphasized texts.</p> <p><em>Emphasized Tag : This is paragraph with Emphasized texts.</em></p> </body> </html> |
Advertisements
Add Comment
📖 Read More
- 1. Html mark tag
- 2. Html small tag
- 3. Html delete tag
- 4. Html insert tag
- 5. Html subscript tag