- Today
- Total
Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬 강의
- selenium
- Crawling
- 코딩문제
- 파이썬활용
- 파이썬 입문
- 셀레니움
- 면접 파이썬
- 채용문제
- 파이썬
- 프로그래밍
- 쉬운 파이썬
- 알고리즘 강좌
- 대학시험
- 자료구조
- 파이썬 자료구조
- 파이썬3
- 알고리즘
- c언어
- python 중간고사
- 알고리즘 강의
- 코딩시험
- 중간시험
- 파이썬 강좌
- 크롤링
- python data structure
- 기말시험
- 자료구조 강의
- gdrive
- 파이썬 알고리즘
Notice
반원 블로그
BootStrap 1.부트스트랩 개요 본문
BootStrap이란?
- CSS 개발을 빠르게 해주는 프레임 워크 중 하나
- 프레임워크 : 프로그램 개발을 도와주는 이미 작성된 각종 소스코드 집합. 작업 틀
- 웹 페이지 프레임워크 : Bootstrap.js, vue.js, react.js 등
- 부트스트랩 공홈 : https://getbootstrap.com/
- 가이드 : http://bootstrapk.com/getting-started/
- github : https://github.com/twbs/bootstrap
- w3s 예시 : https://www.w3schools.com/bootstrap/bootstrap_ver.asp
BootStrap 기본 적용
- Getting Start CDN https://www.w3schools.com/bootstrap4/bootstrap_get_started.asp
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
적용 예시
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<h1>수강 페이지</h1>
<ul class="nav nav-tabs">
<li class="nav-item"><a class="nav-link" href="#">홈</a></li>
<li class="nav-item"><a class="nav-link" href="#">내정보</a></li>
<li class="nav-item"><a class="nav-link active" href="#">수강정보</a></li>
<li class="nav-item"><a class="nav-link" href="#">고객센터</a></li>
</ul>
<div>
<table class="table table-bordered">
<thead>
<tr>
<th>강의명</th>
<th>수강학기</th>
</tr>
</thead>
<tbody>
<tr>
<td>HTML</td>
<td>2019-1</td>
</tr>
<tr>
<td>CSS</td>
<td>2019-1</td>
</tr>
<tr>
<td>JavaScript</td>
<td>2019-1</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
'2018~ > 프론트 엔드 기초(HTML, CSS, JavaScript)' 카테고리의 다른 글
JavaScript 3.연산자(산술, 비교, 삼항, 논리) (0) | 2019.08.12 |
---|---|
JavaScript 2.변수, 변수 스코프(영역) (0) | 2019.08.12 |
JavaScript 1.개요 및 기본구조 (0) | 2019.08.12 |
Firebase 1.개요, 프로젝트 생성 (0) | 2019.08.12 |
CSS 3. CSS파일 불러오기 (0) | 2019.08.12 |
CSS 2.Box Model, margin, padding, border (0) | 2019.08.12 |
CSS 1.CSS란? CSS 적용 방법(요소, 선택자) (0) | 2019.08.12 |
HTML 6. form 태그 (0) | 2019.08.12 |
Comments