HTML CSS examples for CSS:Quiz
Add another @font-face rule for bold characters of the "sansation" font.
<!DOCTYPE html> <html> <head> <style> @font-face { font-family: sansation; src: url(light.woff);<!-- w w w. java 2s.c om--> } @font-face { font-family: sansation; src: url(bold.woff); font-weight: bold; } body { font-family: sansation; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is <strong>another</strong> paragraph.</p> </body> </html>