Hi everyone, an absolute begginer here. I’ve a problem and I couldn’t find any solution. I don’t understand what’s going on but It doesn’t appear to show me the changes that I code on CCS. It’s really basic I only want to change the color of the elements but It doesn’t work.
Here’s my index.html code:
<!DOCTYPE html>
<html>
<head>
<title>My first CCS class</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles.ccs">
</head>
<body>
<h1>Hello World</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis nostrum sunt quo deserunt commodi impedit beatae consequatur soluta. Magni ratione, sunt necessitatibus eum deleniti voluptas, nobis ipsa ad quod ipsum.</p>
</body>
</html>
And this is my styles.ccs code:
*
{color: #f00; }
Both files are saved in the same folder wich is located on C:\Users\clau_\Desktop\CCS
