Created
August 14, 2013 12:09
-
-
Save tcdevs/6230488 to your computer and use it in GitHub Desktop.
angular1.2rc1 and Bootstrap3rc2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en" ng-app> | |
| <head> | |
| <meta charset="UTF-8"/> | |
| <title>title</title> | |
| <link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'> | |
| <link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/css/bootstrap.min.css" rel="stylesheet"> | |
| <link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet"> | |
| <style>body{font-family: 'Noto Sans';}</style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-lg-12"> | |
| <h1>Angular 1.2 & Boostrap 3</h1> | |
| <hr> | |
| <input type="text" ng-model="query" class="form-control"> | |
| <p>{{query}}</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- ALL JS --> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
| <script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/js/bootstrap.min.js"></script> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular.min.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment