0

我对 GitHub 完全陌生,在尝试创建我的第一个项目时遇到了一些问题。

我正在使用 GitHub (username.github.io) 来预览 (live)。但是在本地我的工作很好,但在 Github 页面中却没有。

在 Github 页面中,它不适用于任何 CSS、js 或我的样式。我所有的 CSS、js 和样式都在 index.html 页面中。如果我转到页面源代码,它会显示所有代码但不起作用!我做什么来显示实际(如本地主机)?链接如下。请看看并告诉我我在做什么?

https://mostafizur67.github.io

4

2 回答 2

2

浏览器控制台显示您的外部资源被阻止:

(index):8 Mixed Content: The page at 'https://mostafizur67.github.io/' was loaded over HTTPS, but requested an insecure stylesheet 'http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'. This request has been blocked; the content must be served over HTTPS.
(index):1 Mixed Content: The page at 'https://mostafizur67.github.io/' was loaded over HTTPS, but requested an insecure script 'http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js'. This request has been blocked; the content must be served over HTTPS.
(index):13 Mixed Content: The page at 'https://mostafizur67.github.io/' was loaded over HTTPS, but requested an insecure stylesheet 'http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css'. This request has been blocked; the content must be served over HTTPS.

尝试使用https而不是加载外部资源http

于 2016-09-25T17:42:26.530 回答
0

实际上不是一个 Git 问题,它实际上是一个 HTML/CSS 问题。

http在页面中有指向资源的链接https,而浏览器不喜欢这样。喜欢链接喜欢//example.com/path/to/filehttp://example.com/path/to/file您的浏览器选择正确的协议。

要调试此类问题,请使用浏览器随附的网站管理员工具。例如,对于 Firefox,右键单击页面上的任意位置 -> 检查元素。控制台显示错误。

于 2016-09-25T17:44:03.437 回答