HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point{ font-style: normal; } #point1{ font-style: italic; } #point2{ font-style: oblique; } #point3{ font-style: oblique 45deg; } </style> </head> <body> <h1>CSS font-style Property</h1> <p id="point">font-style of this paragraph is normal.</p> <p id="point1">font-style of this paragraph is italic.</p> <p id="point2">font-style of this paragraph is oblique.</p> <p id="point3">font-style of this paragraph is oblique 45deg.</p> </body> </html>
OUTPUT
×

Save as Private