1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<!doctype html> <html> <head> <meta charset="utf-8"> <title>simple testcase</title> <style type="text/css"> body { border-width: 15px; color: red; } #testid { font-size: 4em; } </style> </head> <body> <div id="testid">simple testcase</div> </body> </html>