HTML CSS examples for HTML Tag:i
The i element denotes foreign or technical terms.
The i Element summary
Item | Value |
---|---|
Element | i |
Local Attributes | None |
Contents | Phrasing content |
Tag Style | Start and end tag required |
New in HTML5 | No |
Changes in HTML5 | HTML5 i has the semantic meaning |
Style Convention
i { font-style: italic; }
Using the i Element
<!DOCTYPE html> <html> <head> </head> <body> <em>I</em> like <!--from w w w .j a v a 2s . co m--> <b>CSS</b> and <b>HTML</b> . <i>java2s.com</i> . </body> </html>