HTML CSS Reference/CSS Attributes and Javascript Style Properties/import

Материал из Web эксперт
Перейти к: навигация, поиск

"import" Example

   <source lang="html4strict">
   

<html> <head> <link rel="stylesheet" href="examples.css" type="text/css"> <style type="text/css">

@import url("examples.css");

</style> </head> <body>

the "examples.css" imported style sheet.

</body> </html>


     </source>
   
  


"import" Syntax and Note

   <source lang="html4strict">

Note: Import an external style sheet inside the <style> without using <link> tag.


     </source>