1. 부트스트랩 기본 설정방법

다운 받아서 webapp에 bootstrap이란 폴더를 만든 후 거기다가 js와 css폴더를 삽입한다.


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap 101 Template</title>

    <!-- Bootstrap -->
    <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">

    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <h1>Hello, world!</h1>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="bootstrap/js/bootstrap.min.js"></script>
  </body>
</html>




2. jumbotron 사용해보기


점보트론(jumbotron)의 정의 : 페이지의 가독성 증가, 콘텐츠를 강조할 때 사용

점보트론의 종류 : .container 내부에 위치한 점보트론(넓이가 100%로 설정됨), .container 외부에 위치한 점보트론(container 값의 변화에 따라 점보트론의 크기가 변함)




<%@ page language="java" contentType="text/html; charset=EUC-KR"

pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Bootstrap 101 Template</title>


<!-- Bootstrap -->

<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">

</head>

<body>

<br>

<br>

<div class="container">

<div class="jumbotron">

<h1>Hello, World!</h1>

<p>As a best practice, we highly recommend using ...</p>

<a class="btn btn-default">Watch Now!</a> <a class="btn btn-info">Tweet

it!</a>

</div>

</div>

<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->

<script

src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<!-- Include all compiled plugins (below), or include individual files as needed -->

<script src="bootstrap/js/bootstrap.min.js"></script>

</body>

</html>



3. bootstrap으로 버튼만들기


<!-- Standard button -->

<button type="button" class="btn btn-default">Default</button>


<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->

<button type="button" class="btn btn-primary">Primary</button>


<!-- Indicates a successful or positive action -->

<button type="button" class="btn btn-success">Success</button>


<!-- Contextual button for informational alert messages -->

<button type="button" class="btn btn-info">Info</button>


<!-- Indicates caution should be taken with this action -->

<button type="button" class="btn btn-warning">Warning</button>


<!-- Indicates a dangerous or potentially negative action -->

<button type="button" class="btn btn-danger">Danger</button>


<!-- Deemphasize a button by making it look like a link while maintaining button behavior -->

<button type="button" class="btn btn-link">Link</button>



http://getbootstrap.com/css/

http://www.youtube.com/watch?v=tkQpnxRkn_M

'Bootstrap' 카테고리의 다른 글

네비게이션 바  (0) 2015.01.11
반응형 그리드 시스템  (0) 2015.01.11
Posted by marvell
,