wall of opensource
1.0.0
这只是一个有趣的项目,开发人员可以轻松地做出第一个开源贡献。
该项目仅使用HTML和CSS创建,因此即使是初学者也可以轻松做出贡献。
为了参与/贡献,首先要做以下操作
git clone https://github.com/your-username/wall-of-opensource.git
Index.html中更改代码您唯一需要做的就是添加自己的详细信息。像下面一样?
要考虑的重要点必须在上一张当前卡之后,必须在底部添加。不在现有卡中

该代码很简单,只需从评论所说的位置重复,然后添加您自己的详细信息即可。如下面的代码所示,在上面的Index.html文件中复制代码和粘贴,添加您的姓名,详细信息和社交链接(Twitter和Github)。在图像标签上,确保您使用其他平台(Twitter或github)的图像链接。不要上传图像或使用本地计算机中的图像!
<!-- DUPLICATE THIS CODE BLOCK -->
<!-- Person Card -->
<div class="card">
<div class="card-image">
link to your image
</div>
<div class="card-content">
<h3 class="card-content-name" id="my-name">your name</h3>
<p class="card-content-text" id="about-me">Who are you and what do you do?.</p>
<div class="card-icons">
<ul>
<li><a href="https://twitter.com/YOUR TWITTER HANDLE" target="_blank"><i class="fa-brands fa-twitter"></i></a></li>
<li><a href="https://github.com/GITHUB USERNAME" target="_blank"><i class="fa-brands fa-github"></i></a></li>
<!-- you can add as many more lists with your social links as you desire -->
</ul>
</div>
</div>
</div>
<!-- Person Card Ends Here -->
<!-- DUPLICATE THIS CODE BLOCK ENDS HERE-->
编辑Index.html文件并确保一切都很酷后,请执行以下操作。
git init
git add --all
git commit -m "message"
git push
做出您的第一个开源供款
开源:如何作为初学者做出贡献