For some reason, my CSS file will not link to my HTML file. I have tried different paths and browsers. When I inspect the elements of the page and look under resources, it doesn't show up.
Here is my HTML:
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<link rel="stylesheet" herf="/CSS/fun.css" />
<title>Task Sheet</title>
</head>
<body>
<div class="w3-container w3-white middle border">
<h2>Daily Task</h2>
<button type="button" name="button" onclick="test()">Button</button>
<form id="t1">
<input type="checkbox" name="task1" value="task1"> Task 1 Test</input>
</form>
</div>
<script src="/Users/ddjhende/Desktop/Fun Website/JavaScript/fun.js"></script>
</body>