|
1 <!DOCTYPE HTML> |
|
2 <html> |
|
3 <head> |
|
4 <title>src local ref with regular, bold, italic</title> |
|
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
6 |
|
7 <style type="text/css"> |
|
8 |
|
9 body { |
|
10 margin: 50px; |
|
11 font-size: 24pt; |
|
12 } |
|
13 |
|
14 /* use full names */ |
|
15 |
|
16 p { font-family: Helvetica Neue, Bitstream Vera Sans, FreeSans, SwissA, DejaVu Sans, Arial, serif; } |
|
17 |
|
18 .regular { } |
|
19 .bold { font-weight: bold; } |
|
20 .italic { font-style: italic; } |
|
21 |
|
22 </style> |
|
23 |
|
24 <script type="text/javascript"> |
|
25 |
|
26 </script> |
|
27 |
|
28 </head> |
|
29 <body> |
|
30 |
|
31 <p class="regular">This should be a sans-serif face</p> |
|
32 |
|
33 <p class="bold">This should be a bold sans-serif face</p> |
|
34 |
|
35 <p class="italic">This should be an italic sans-serif face</p> |
|
36 |
|
37 </body> |
|
38 </html> |