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
做出您的第一個開源供款
開源:如何作為初學者做出貢獻