<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;	
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.