Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> .custom-font { font-family: Georgia, serif; font-size: 24px; font-style: italic; font-weight: bold; color: #16aa0c; } </style> </head> <body> <p>This is a normal paragraph.</p> <p class="custom-font">This paragraph has custom font styles applied!</p> </body> </html>