I've been struggling for a while now to host my Portfolio CV on GitHub and I can't seem to get my CSS styles to apply correctly on the URL. - This is how I have linked it in the HTML document:
<link rel="stylesheet" type="text/css" href="styles.css">
The styles.css file is not in a folder and works fine locally, but doesn't work on the pages.
Before, I had this link tag:
<link rel="stylesheet" href="styles.css">
I decided to switch it to this format to see if it would fix the issue:
<link rel="stylesheet" type="text/css" href="styles.css">