<i> - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:i

Introduction

The i element denotes foreign or technical terms.

The i Element summary

Item Value
Element i
Local Attributes None
Contents Phrasing content
Tag StyleStart 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

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials