CSS Fonts
<!DOCTYPE html> <html> <head> <style> p { font: italic 400 16px/1.5 Arial, sans-serif; } </style> </head> <body> <p>Set every font property at once with the shorthand.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> p { font: italic 400 16px/1.5 Arial, sans-serif; } </style> </head> <body> <p>Set every font property at once with the shorthand.</p> </body> </html>