1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<!doctype html> <html> <head> <meta charset=utf-8> <style type="text/css"> @font-face { font-family: local-gentium; src: url(../fonts/sil/GenR102.ttf); } p { font: 300% local-gentium, serif; font-weight: bold; color: rgb(100,255,100); margin: 0; } </style> </head> <body> <p>Test</p> </body> </html>