what is i tag in html code example
Example 1: what does i tag do in html
The <i> tag defines a part of text in an alternate voice or mood. The content inside is typically displayed in italic. The <i> tag is often used to indicate a technical term, a phrase from another language, a thought, a ship name, etc.
Example 2: html i tag
<p>This text is not italic</p><i>This text is italic</i>
Example 3: how to make comments in markdown which do not render in html
[//] <> (This works, parathesis are necessary btw)
[//] # (This is perhaps the most platform independent solution.
In either case, the comments will not render to html,
even if the user selects view source.)