LoginSignup
7

More than 5 years have passed since last update.

最速でBootswatchを試してみる

Posted at

Bootstrap CDNを利用して、簡単にBootswatchを試してみる事ができます。
http://www.bootstrapcdn.com/

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>最速Bootswatch</title>
  <!-- Yeti を入れてみる-->
  <link href="//netdna.bootstrapcdn.com/bootswatch/3.1.0/yeti/bootstrap.min.css" rel="stylesheet">
  <!-- Bootstrapのjavascript-->
  <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
</head>
<body>
  ....

テーマは一覧から選びます。
http://www.bootstrapcdn.com/#bootswatch_tab

Bootswatchの各テーマからlinkタグをコピペして利用できるようになっているので、非常に簡単です。

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
7