2d0342de by bootflat

update readme

1 parent badd911b
...@@ -47,6 +47,29 @@ Bootflat is fully responsive, built for mobile-first in mind. It provides off sc ...@@ -47,6 +47,29 @@ Bootflat is fully responsive, built for mobile-first in mind. It provides off sc
47 47
48 The source files are in the `bootflat/` folder. You can just grab the `bootflat/css/`, `bootflat/scss/`,`bootflat/js/` and `bootflat/img/` folders and you'll be good to go. 48 The source files are in the `bootflat/` folder. You can just grab the `bootflat/css/`, `bootflat/scss/`,`bootflat/js/` and `bootflat/img/` folders and you'll be good to go.
49 49
50
51 <!doctype html>
52 <html>
53 <head>
54 <title>Minimal Bootflat example</title>
55 <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
56 <link rel="stylesheet" href="https://bootflat.github.io/bootflat/css/bootflat.css">
57 </head>
58
59 <body>
60 <h1>Test bootflat</h1>
61 <a class="btn btn-primary">Flat button</a>
62
63 <!-- Bootstrap -->
64 <script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
65 <script src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
66
67 <!-- Bootflat's JS files.-->
68 <script src="https://bootflat.github.io/bootflat/js/icheck.min.js"></script>
69 </body>
70 </html>
71
72
50 ## Table of contents: 73 ## Table of contents:
51 74
52 + [Home page](http://bootflat.github.io) 75 + [Home page](http://bootflat.github.io)
......