Hi, I’m trying to do the “Build a Survey Form” project, however, the CSS file is not displaying at all, I believe I have linked correctly the file to my HTML file but it doesn’t work, can anyone help?
HTML code:
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Survey Form</title>
</head>
CSS body code:
body {
margin: 0;
font-size: 16px;
font-family: 'Montserrat', sans-serif;
color: rgb(221, 221, 221);
background-image: linear-gradient(45deg, rgb(247, 204, 247), rgb(216, 196, 160), rgb(255, 177, 177) );
}
How it looks:
I can’t upload a second image but it shouldn’t look like that, it supposedly has colors, padding, background, etc.