Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Importing Style Sheet in HTML</title> <style type="text/css"> @import url("/examples/css/style.css"); p { color: blue; font-size: 16px; } </style> </head> <body> <h1>The styles for this heading are defined in the imported style sheet</h1> <p>The styles for this paragraph are defined in the embedded style sheet.</p> </body> </html>