-
-
Save a3linux/974e62587bb513c2efaf to your computer and use it in GitHub Desktop.
My Html5 template with Jquery and Bootstrap from CDN
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> | |
| <meta charset="utf-8"> | |
| <title>Project Title</title> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <meta name="viewport" content="width=device-width"> | |
| <meta name="description" content=""> | |
| <link rel="shortcut icon" href="favicon.ico"> | |
| <!-- Twitter Bootstrap --> | |
| <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"> | |
| <!--[if lt IE 9]> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/r29/html5.js"></script> | |
| <![endif]--> | |
| </head> | |
| <body> | |
| <header id="header"> | |
| <h1>Header</h1> | |
| <nav id="menu_container"> | |
| <div class="navbar navbar-fixed-top"> | |
| <div class="navbar-inner"> | |
| <div class="container"> | |
| <a class="btn btn-navbar" data-toggle="collapse" | |
| data-target=".nav-collapse"> <span class="icon-bar"></span> <span | |
| class="icon-bar"></span> <span class="icon-bar"></span> </a> <a | |
| class="brand" href="#">Project Name</a> | |
| <div class="nav-collapse"> | |
| <ul class="nav"> | |
| <li class="active"><a href="#">Home</a> | |
| </li> | |
| <li><a href="#about">About</a> | |
| </li> | |
| <li><a href="#contact">Contact</a> | |
| </li> | |
| </ul> | |
| </div> | |
| <!--/.nav-collapse --> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| </header> | |
| <div id="main"> | |
| <section id="content"> | |
| <b>Home Page Content</b> | |
| </section> | |
| </div> | |
| <footer id="footer"> | |
| <b> Footer </b> | |
| </footer> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
| <script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/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