1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE HTML> <html> <head> <title>Escaped family names test</title> <meta charset="UTF-8"> <style> body { margin: 20px; } #test, #test2 { font-family: serif; } </style> </head> <body> <p id=test>Should be serif</p> <p id=test2>Should be serif</p> </body> </html>