Created
July 22, 2015 16:12
-
-
Save mnshcodie/98f5a6067d28d3cbe075 to your computer and use it in GitHub Desktop.
HTML: basic bootstrap
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"> | |
| <head> | |
| <title>Title Page</title> | |
| <meta charset="UTF-8"> | |
| <meta name=description content=""> | |
| <meta name=viewport content="width=device-width, initial-scale=1"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- Bootstrap CSS --> | |
| <link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" media="screen"> | |
| </head> | |
| <body> | |
| <h1 class="text-center">Hello World</h1> | |
| <!-- jQuery --> | |
| <script src="//code.jquery.com/jquery.js"></script> | |
| <!-- Bootstrap JavaScript --> | |
| <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment