-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (71 loc) · 2.8 KB
/
index.html
File metadata and controls
91 lines (71 loc) · 2.8 KB
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, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="">
<title>Bootstrap University</title>
<!-- Enable proper responsive views and prevent iOS/WinPhone auto scale -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<script src="../assets/js/respond/respond.min.js"></script>
<![endif]-->
<!-- Bootstrap core CSS -->
<link href="bootstrap-compiled/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<!-- We'll be adding all our custom CSS here for each step. -->
<style>
body {
padding: 40px 20px;
text-align: center;
}
.container {
max-width: 600px;
}
hr {
margin-top: 40px;
margin-bottom: 40px;
}
p {
margin-bottom: 40px;
font-size: 16px;
line-height: 1.4;
}
</style>
</head>
<body>
<!-- Page content -->
<div class="container">
<h4 class="text-muted">Bootstrap University</h4>
<hr>
<h3><a href="./step-1/index.html">1. Brief tour of Bootstrap 3</a></h3>
<p>Explore the features Bootstrap 3 has to offer, including a brief overview of the updated grid system and new components.</p>
<h3><a href="./step-2/index.html">2. Customizing and extending</a></h3>
<p>Building on top of Bootstrap is easy when you extend its powerful built-in classes to create your very own components.</p>
<h3><a href="./step-3/index.html">3. Using JavaScript plugins</a></h3>
<p>Add interactive components like tooltips, modals, and more to any page with a dozen JavaScript plugins built on jQuery.</p>
<h3><a href="./step-4/index.html">4. Customizing with LESS</a></h3>
<p>Compile Bootstrap on your own to create custom builds, make use of variables and mixins, and more.</p>
<h3><a href="./step-5/index.html">5. Heading to production</a></h3>
<p>Generate your own build of Bootstrap and button things up before heading into a production environment.</p>
<hr>
<div class="footer text-muted">
<p>Made with love by <a href="http://markdotto.com">@mdo</a>.</p>
<p><3</p>
</div>
</div>
<!-- JavaScript -->
<!-- Placed at the end of the document so page content loads first. -->
<script src="assets/js/jquery.js"></script>
<script src="bootstrap-compiled/bootstrap.js"></script>
<!-- Custom JavaScript -->
<!-- We'll be adding all our custom JS here for each demo. -->
<script>
$(function() {
});
</script>
</body>
</html>