-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkbs_starter.html
91 lines (80 loc) · 3.61 KB
/
mkbs_starter.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>MK Bootstrap Starter</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link href="mkbs_starter.css" rel="stylesheet">
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="header">
<div class="row">
<div class="col-xs-12 col-md-8">
<h3 class="text">MK Bootstrap <small>Starter</small></h3>
</div>
<div class="col-xs-12 col-md-4">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active"><a href="#">Home</a></li>
<li role="presentation"><a href="#">Sign up</a></li>
</ul>
</nav>
</div>
<div class="visible-xs-block visible-sm-block"> </div>
</div>
</div>
<div class="jumbotron">
<h2>A Cool Catch Phrase</h2>
<p class="lead">Tired of finding a template? <small>Get this one!</small></p>
<p><a class="btn btn-success" href="#" role="button">Sign up today and stay fresh!</a></p>
</div>
<div class="row marketing">
<div class="col-lg-6">
<h4>A Cool Menu Item</h4>
<p>A Long Description of this Menu Item would help you fill this page. I think. You think. We think. Let's think together.</p>
</div>
<div class="col-lg-6">
<h4>A Cool Menu Item</h4>
<p>A Long Description of this Menu Item would help you fill this page. I think. You think. We think. Let's think together.</p>
</div>
</div>
<div class="row marketing">
<div class="col-lg-6">
<h4>A Cool Menu Item</h4>
<p>A Long Description of this Menu Item would help you fill this page. I think. You think. We think. Let's think together.</p>
</div>
<div class="col-lg-6">
<h4>A Cool Menu Item</h4>
<p>A Long Description of this Menu Item would help you fill this page. I think. You think. We think. Let's think together.</p>
</div>
</div>
<footer class="footer">
<p>
<span>© <a href="#">Copyright</a> 2016</span>
<span class="pull-right">
<span><a href="#">Home</a></span>
<span>•</span>
<span><a href="#">Sign Up</a></span>
<span>•</span>
<span><a href="#">Opt out</a></span>
<span>•</span>
<span><a href="#">Terms & Privacy Policy</a></span>
</span>
</p>
</footer>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
</body>
</html>