微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

将 github 帐户添加到自述文件

如何解决将 github 帐户添加到自述文件

如何在自述文件添加指向 GitHub 帐户的链接
这就是我想看到的:

enter image description here

解决方法

你可以试试这个代码:-

这是我的 CSS:

.photos {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
}

这是我的 HTML:

<div class="photos">
<a href="Github Profile url"> 
  <img href="Github profile image source"> 
</a> 
<div class="photos">
<a href="Github Profile url"> 
  <img href="Github profile image soure"> 
</a> 
<div class="photos">
<a href="Github Profile url"> 
  <img href="Github profile image source"> 
</a> 
<div class="photos">
<a href="Github Profile url"> 
  <img href="Github profile image source"> 
</a> 
</div>

要显示“作者”一词,您可以使用

##作者

,

一种快速的方法是使用 contributors-img 并在您的 Markdown 中使用以下内容:

<a href="https://github.com/OWNER/REPO/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=OWNER/REPO" />
</a>

gist example

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。