AlexFallen
Developer
- Jul 19, 2011
- 490
- 64
Hello,
I recently started playing around with Bootstrap, and I currently am looking to have just a basic starting template, with which I can start each bootstrap page off with, I will post the code below, could anyone tell me if I am missing anything, or if something is wrong?
Thanks in advance!
I recently started playing around with Bootstrap, and I currently am looking to have just a basic starting template, with which I can start each bootstrap page off with, I will post the code below, could anyone tell me if I am missing anything, or if something is wrong?
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Bootstrap Site</title>
<meta name="viewport" content="width=device-width, initial-slace-1.0"/>
<meta name="description" content=""/>
<meta name="author" content=""/>
<!-- Le styles -->
<!-- TODO: make sure bootstrap.min.css points to BootTheme generated file
-->
<link href="netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css"/>
<style type="text/css">
body
{
padding-top: 60px;
padding-bottom: 40px;
}
</style>
<!-- TODO: make sure bootstrap-responsive.min.css points to BootTheme
generated file -->
<link href="css/bootstrap-responsive.min.css" rel="stylesheet"/>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="shortcut icon" href="docs/assets/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" size="144x144" href="docs/assets/ico/apple-touch-icon-144-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" size="114x114" href="docs/assets/ico/apple-touch-icon-114-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" size="72x72" href="docs/assets/ico/apple-touch-icon-72-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" href="docs/assets/ico/apple-touch-icon-57-precomposed.png">
</head>
<body>
</body>
</html>
Thanks in advance!