<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="css" type="text/css" href="stylesheet.css"/>
</head>
<body>
<p>
<strong>C</strong>ascading
<strong>S</strong>tyle
<strong>S</strong>heets
</p>
</body>
</html>
p {
color: blue;
text-decoration: underline;
}
strong {
color:red;
}
body {
background: aqua;
}
For some reason this won't load. I ran it through CSS and HTML validators, but I use developer tools and it shows no css stylesheets attached, and my (very basic) formatting is not being applied. I looked at a few other questions and nothing fixed this.