<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>CSS Imported Style Sheet</title> <style> @import url("/examples/css/style.css"); p { color:green; font-size:20px; } </style> </head> <body> <h1>This is a css imported style sheet</h1> <p>This is a text .</p> </body> </html>