I'm a new web design student and I just learned about Cascading Style sheets and how to link them externally; however, I'm encountering a problem. I have the file linked in my <head>
with no problem and the file directory is correct, but my changes are not showing up. If I had a <style>
tag or attribute then my CSS works, but not from the external file. Any help?
<!DOCTYPE html>
<html>
<head>
<title>Protein Structures</title>
<link href="styles/main.css">
</head>
<link rel="stylesheet" type="text/css" href="styles/main.css">
– Monoplegia