In my CS 205 class project, I am tasked with creating a website. To accomplish this, I used Notepad++ for the HTML files and Notepad for the CSS files. The site consists of an index.html page along with other content pages, each designed separately in Notepad++ with its own CSS file.
The challenge I am facing involves a main CSS file named "global.css" that is located in the "main css" folder with the index.html file. While linking the global.css file to the index.html page works fine, it does not work when trying to link it to other pages stored in a separate "pages" folder. How can I resolve this issue?
<head>
<meta charset="utf-8">
<title>Games</title>
<link rel="stylesheet" href="main css\global.css">
<link rel="stylesheet" href="game.css">
</head>