Home
CSS
CSS Fonts
Google Fonts
Tryit: Styling the sofia font with multiple google effects
Run ❯
Get your
own
website
Result Size:
625 x 534
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia&effect=neon|outline|emboss|shadow-multiple"> <style> body { font-family: "Sofia", sans-serif; font-size: 30px; } </style> </head> <body> <h1 class="font-effect-neon">Neon Effect</h1> <h1 class="font-effect-outline">Outline Effect</h1> <h1 class="font-effect-emboss">Emboss Effect</h1> <h1 class="font-effect-shadow-multiple">Multiple Shadow Effect</h1> </body> </html>