<html>
<head>
<link rel = "stylesheet" href = "index.css">
</head>
<body>
<p>This line is white but its background is black</p>
<p>This line is also another white line but its background is black</p>
</body>
<html>
body{
background-color: black;
}
p {
color: white;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.