HTML CSS examples for CSS Property:font
Using css font italic shorthand
<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>