Using css font italic shorthand - HTML CSS CSS Property

HTML CSS examples for CSS Property:font

Description

Using css font italic shorthand

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
p {<!-- w  ww.ja  v a  2  s  .co m-->
   font:italic normal 13px Georgia;
}
</style> 
 </head> 
 <body> 
  <p>Hello World, Check Check</p>  
 </body>
</html>

Related Tutorials