bootstrap の基本1bootstrapで必要なもの

  • 投稿日:
  • by
  • カテゴリ:

bootstrap-3.3.4-dist(現時点で最新のもの)をダウンロード


bootstrap
|_____ CSS
| |_________ bootstrap.css
| |_________ bootstrap.min.css
| |_________ bootstrap.css.map
| |_________ bootstrap-them.css
| |_________ bootstrap.theme.min.css
| |_________ bootstrap.theme.css.map
|_____ fonts
| |_________ glyphiconshalflings-regular.eot
| |_________ glyphiconshalflings-regular.svg
| |_________ glyphiconshalflings-regular.ttf
| |_________ glyphiconshalflings-regular.wof
|______ js
| |_________ bootstrap.js
| |_________ bootstrap.min.js

<head>
<!--Bootstrap CSSを読み込む -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!--自分のカスタマイズでCSSを上書きする-->
<link href="custom.css" rel="stylesheet" media="screen">
</head>

<body>

<!-- 最小化したBootstrap jsを読み込む。</body>のすぐ前に -->
<script src="js/bootstrap.min.js"></script>
</body>


CDNを使ってbootstrapを外部から読み込む場合

<head>
<!--最新の Bootstrap CDN CSSを読み込む -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!--自分のカスタマイズでCSSを上書きする-->
<link href="custom.css" rel="stylesheet" media="screen">
</head>

<body>

<!-- 最新で最小化したBootstrap CDN jsを読み込む。</body>のすぐ前に -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>