skip to Main Content

enter image description hereI have a folder containing an html file, an image folder, and a css folder that I uploaded in GitHop and everything shows up perfectly, but the css doesn’t show up, just html.

I tried uploading files more than once, but nothing happens. The site should appear in full CSS format

Rich text modeMarkdown modeMarkdown with preview mode

2

Answers


  1. Do I correctly understand that the css file is unavailable in the github repo?
    How did you uploaded the folder to github?

    Login or Signup to reply.
  2. I would guess that the path to your .css stylesheet is wrong. You mentioned the .css file is inside a folder, what does the path to that folder look like?

    If it’s inside of a folder, you have to access it like this:

    <link rel="stylesheet" href="styles/style.css">

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search