将 github 个帐户添加到自述文件
Add github accounts to readme file
如何在我的自述文件中添加指向 GitHub 帐户的链接。
这就是我想看到的:
你可以试试这个代码:-
这是我的 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>
要显示“作者”一词,您可以使用
##Authors
一个快速的方法是使用 contributors-img
并在降价中使用以下内容:
<a href="https://github.com/OWNER/REPO/graphs/contributors">
<img src="https://contrib.rocks/image?repo=OWNER/REPO" />
</a>
如何在我的自述文件中添加指向 GitHub 帐户的链接。
这就是我想看到的:
你可以试试这个代码:-
这是我的 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>
要显示“作者”一词,您可以使用
##Authors
一个快速的方法是使用 contributors-img 并在降价中使用以下内容:
<a href="https://github.com/OWNER/REPO/graphs/contributors">
<img src="https://contrib.rocks/image?repo=OWNER/REPO" />
</a>