hayu's 개발 일지

[TIL]240506 GitHub 리드미(README) 배지 넣기 본문

기술/git, github

[TIL]240506 GitHub 리드미(README) 배지 넣기

hayu00 2024. 5. 6. 21:08

깃허브 리드미(README) 배지 넣기

코드 형식

<img src="https://img.shields.io/badge/[기술명]-[배경색]?style=[모양타입]&logo=[아이콘명]&logoColor=[로고색]"/>

 

사이트에서 참고해서 만들 수 있다!

https://simpleicons.org/

 

Simple Icons

3124 Free SVG icons for popular brands

simpleicons.org

 

아이콘 및 색상코드 예시

  • 배경색
    • 좌측 하단 색상 코드를 '#' 제외하고 입력하면된다.
    • 코드 클릭시 클립보드에 자동으로 복사된다.

배지 넣기

 

<img src="https://img.shields.io/badge/java-F7DF1E?style=for-the-badge&logo=java&logoColor=white"/>
<img src="https://img.shields.io/badge/spring-6DB33F?style=for-the-badge&logo=spring&logoColor=white"/>
<img src="https://img.shields.io/badge/springboot-6DB33F?style=for-the-badge&logo=springboot&logoColor=white"/>

 

가운데 정렬(html 만 가능!)

<h3 align="center">내용 적기(제목)</h3>
<div align='center'>
	<!-- 여기에 내용을!! -->
</div>