Where are the files located on the server or your PC? Are they in the same directory or are they in different directories?
If the HTML page is in the root directory of the server, the CSS might be found in a subdirectory called “css”. The way your CSS file is being called, the CSS file is in the same directory as the HTML file. It looks like the CSS file should work properly.
On the other hand if the CSS is in the CSS subdirectory, the link should read CSS/style.css. And the styles on the CSS file should be preceeded by a pair of dots and a backslash to target the HTML file.
examples:
same directory
mypage.html
style.css
different directories
mypage.html
css/style.css
Have you ever taken and finished a basic HTML and CSS course? If not, you really should take the time to do so. You will save yourself hours of frustration.