# 부트 스트랩
- 웹사이트를 쉽게 만들 수 있게 도와주는 HTML, CSS, JS 프레임워크이다.
## 설치방법
- 아래 링크에 접속하여 다운로드 클릭하여 설치
- https://getbootstrap.com/docs/4.4/getting-started/download/
Download
Download Bootstrap to get the compiled CSS and JavaScript, source code, or include it with your favorite package managers like npm, RubyGems, and more.
getbootstrap.com
## 사용 전 적용
- 다운받은 부트스트랩 압축파일을 스프링의 경우 resource 아래에 신규 폴더를 생성하여 넣어준다.
- 넣어준 자료를 head 등에서 다음과 같이 불러온다.
<!-- 부트스트랩 css 사용 -->
<link rel="stylesheet" href="/resource/css/bootstrap.css">
<!-- 부트스트랩 js 사용 -->
<script type="text/javascript" src="/resource/js/bootstrap.js"></script>
## 사용 방법
Free Bootstrap Themes, Templates, Snippets, and Guides
Start Bootstrap develops free to download, open source Bootstrap 4 themes, templates, and snippets and creates guides and tutorials to help you learn more about designing and developing with Bootstrap.
startbootstrap.com
혹은 부트스트랩 무료 탬플릿 등 검색을 통해 사용하고자 하는 무료 탬플릿을 다운받는다.
받은 자료를 복사 하여 resource 아래에 복사 후 사용
'기타' 카테고리의 다른 글
소스 코드 리팩토링(Refactoring) (0) | 2020.08.27 |
---|---|
textarea의 placeholder 줄바꿈 방법 (0) | 2020.08.27 |
레디스(Redis) (0) | 2020.08.25 |
깃허브(github)에 이미지 올리기 (0) | 2020.08.25 |
엑셀 데이터 MySQL에 등록하기 (0) | 2020.08.21 |