HTML - Italic Text
This, same as the bold tag, is used to highlight certain terms or words, sometimes even an entire sentence. It is not indicated to abuse its use though.
To create this type of text we can use the followings:
<i>Italic</i> Tag! <em>Emphasized</em> Tag! <blockquote>Blockquote</blockquote> Tag! <address>Address</address> Tag! |
|---|
Display
Italic Tag! Emphasized Tag! Blockquote Tag! Address Tag! |
|---|
Usually, the browser will interpret these tags the same.
Usually, the simplest are the most used, and I mean <i> and <em>.
<b>HTML</b> <i>Hyper Text Markup Language</i> or <b>HTML</b> <em>Hyper Text Markup Language</em> |
|---|
Display
HTML Hyper Text Markup Language or HTML Hyper Text Markup Language |
|---|
HTML - Both Bold and Italic
Most of the times bold and italic are being put under some other tags
to get to the text's final format. I mention that under no circumstance
is closing every single tag to be forgotten.
<p>All tags <b><i>must</i></b> be closed </p> |
|---|
Display
< All tags must be closed |
|---|
