Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <!-- Load the Google Font "Roboto" --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet"> <style> body { font-family: 'Roboto', sans-serif; line-height: 1.6; } </style> </head> <body> <h1>This page uses Google Fonts</h1> <p>The font used on this page is <strong>Roboto</strong>, which is being loaded directly from Google Fonts.</p> </body> </html>