Which tag makes text italic in HTML?
Both <i> and <em> can make text italic.
Is <i> deprecated?
No, but it should be used only for visual styling or specific meanings.
Which is better for SEO: <i> or <em>?
<em> is better because it adds semantic meaning.
Can I change italic style with CSS?
Yes, using font-style: italic.
Should I use italics for headings?
No. Use heading tags (<h1>–<h6>) instead.