Web >> Development >> HTML >> How to set the font style for the entire document i.e. all html entities

<!DOCTYPE html> <html lang="en-US"> <head> <style> * { font-family: Verdana; font-size: 14px; color: #FFFFFF; } </style> </head> <body> The quick brown fox jumped over the lazy dog </html>