I am attempting this document. I am finding that the @import rule is not working. The Stylehseet1.css file has a P { color:red; } rule.
<html>
<head>
<title>New Document</title>
</head>
<body>
<div>
<style>
@import 'Stylesheet1.css';
</style>
<p>This should be red.</p>
</div>
</body>
</html>
<html>
<head>
<title>New Document</title>
</head>
<body>
<div>
<style>
@import 'Stylesheet1.css';
</style>
<p>This should be red.</p>
</div>
</body>
</html>