HTML CSS examples for CSS Property:import Rule
import style for printing
<!DOCTYPE html> <html lang="en"> <head> <title>Example of CSS @import rule</title> <style type="text/css"> @import url("../css/default.css"); @import url("../css/print-style.css") print; body {<!-- w w w . j ava2 s.c o m--> color: red; font-size: 1em; } </style> </head> <body> <h1>Importing External Style Sheet</h1> </body> </html>