告诉我如何使用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>
不,你不能,因为它违反了
内容安全政策指令: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>