CSS Fonts
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial, Helvetica, sans-serif; } </style> </head> <body> <h1>Site Heading</h1> <p>Body text rendered in a sans-serif stack.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial, Helvetica, sans-serif; } </style> </head> <body> <h1>Site Heading</h1> <p>Body text rendered in a sans-serif stack.</p> </body> </html>