Your link and title tags are buried inside the style tags inside the HEAD tag container. I’m guessing your Title might not be working either.
<head> <style> <link rel=“stylesheet” type=“text/css” href=“style.css” /> <title>Testing</title> </style> </style>You don’t use STYLE tags unless you’re actually putting CSS code inside them. Link tags don’t go inside style tags. So because you’re linking to an external CSS file you don’t need style tags at all in the head.
Your head tag and contents should look like this;
<head> <link rel=“stylesheet” type=“text/css” href=“style.css” /> <title>Testing</title> </head>I think that should work.