1

I'm trying to host a github page consisting of this featured html file.

The dropdown menu included will indeed dropdown upon browsing my offline version alright, but fails to do so once uploaded and viewed on username.github.io

The online page seems to work correctly except for this feature.

Any reason it should behave this way, or fixes ?

Best,

Edit : Actually the issue seems to be with the CDN's that I was trying to include, because even the Bootstrap css stylesheet won't load ?

Here we go : https://marsupilam.github.io/

marsupilam
  • 127
  • 2
  • 7

1 Answers1

1

Your main page is served over https, your browser mixed content security then disallow loading of resources served over http.

Just change your CDN urls to use https and not http.

David Jacquel
  • 51,670
  • 6
  • 121
  • 147