我可以使用iframe将我的github个人资料嵌入我的网站吗?怎么样?

问题描述 投票:-1回答:1

告诉我如何使用iframe将我的GitHub配置文件嵌入到我的网站中,还是有另一种方法可以实现?我使用下面的代码,但无法得到结果。

<iframe width="50%" height="400px" src="github.com/dt9819?tab=repositories/"; style="-webkit-transform:scale(0.5);-moz-transform-scale(0.5);"></iframes>
html github iframe web
1个回答
0
投票

不,你不能,因为它违反了 内容安全政策指令:frame-ancestors 'none'

如果您想在网站中包含您的Github个人资料,您可以随时免费试用GithubIO。

<iframe style="height:300px; width:300px;" src="https://github.com/renielcanlas">
<b>IFrame is unavailable here</b>
</iframe>

<iframe style="height:300px; width:300px;" src="https://renielcanlas.github.io">
<b>IFrame is unavailable here</b>
</iframe>
© www.soinside.com 2019 - 2024. All rights reserved.