LoginSignup
6
5

More than 5 years have passed since last update.

bootstrap3使ってみた

Last updated at Posted at 2014-10-15

準備

wget https://github.com/twbs/bootstrap/releases/download/v3.2.0/bootstrap-3.2.0-dist.zip
unzip bootstrap-3.2.0-dist.zip
wget -O bootstrap-3.2.0-dist/js/jquery-2.js http://code.jquery.com/jquery-2.1.1.min.js

mv bootstrap-3.2.0-dist bootstrap3
touch index.html

サンプル

参考

index.html
<html>
<head>
  <meta charset="utf-8"></meta>
  <link href="bootstrap3/css/bootstrap.min.css" rel="stylesheet" />
  <link href="bootstrap3/css/bootstrap-theme.min.css" rel="stylesheet" />
</head>
<body>

<div class="container">
<div class="row">
  <div class="col-md-6"></div>
  <div class="col-md-6"></div>
</div>
</div>

<script src="bootstrap3/js/jquery-2.js" type="text/javascript"></script>
<script src="bootstrap3/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>
6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5