Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- CSTS 폭포수 모델
- 재귀 예제
- 재귀함수 예제
- 해외증권 양도세 한국투자증권
- katalon 자동화
- 한국투자증권 양도세 신고
- javascript 자동완성
- git 연동
- katalon
- katalon 비교
- 한국투자증권 해외주식 양도세
- 피보나치함수
- Katalon Recorder 사용법
- katalon xpath
- 테스트 자동화
- 홈택스 해외주식 양도세
- js 자동완성
- 주식 양도세 신고방법
- oracle group by
- 톰캣 실시간 로그
- 해외주식 양도세 신고
- tomcat log
- bfs 미로탐색 java
- katalon 사용법
- 최대공약수 예제
- recursion example
- 국세청 해외주식 양도세 신고방식
- java.sql.SQLSyntaxErrorException
- 피보나치 예제
- 피보나치함수 예제
Archives
- Today
- Total
엄지월드
bootstrap css 적용 방법(CDN) - 최신 본문
<head>와 </head> 태그 사이에 아래 CDN 태그를 삽입해주면 bootstrap css 사용이 가능하다.
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
전체 코드 예시
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<title>게시글 목록</title>
</head>
<body>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</body>
</html>
최신 버전의 bootstrap cdn 을 사용하고 싶으면 아래 링크에 들어가서 [Copy] 아이콘을 클릭하여 붙여넣기 후에 사용하면 된다.
<광고 한번 클릭해주시면 저에게 큰 힘이 됩니다 😃>
'Front > Bootstrap' 카테고리의 다른 글
부트스트랩 사이트 모음 (0) | 2017.05.27 |
---|
Comments