将 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