-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep_4.html
139 lines (123 loc) · 4.15 KB
/
step_4.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<title>Twitter Bootstrap 3 Tutorial</title>
<link type="text/css" rel="stylesheet" href="css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="css/custom.css" />
</head>
<body>
<!-- Fixed navigation bar with drop-down menu
============================================-->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">UChicago TechTeam</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorials <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Bootstrap Tutorials</a></li>
<li><a href="#">PHP Tutorials</a></li>
<li><a href="#">CSS Tutorials</a></li>
<li><a href="#">Java Tutorials</a></li>
</ul>
</li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</div>
<!-- Carousel
==========================================-->
<div id="myCarousel" class="carousel slide">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="img/image1.jpg"/>
<div class="container">
<div class="carousel-caption">
<h1>My Heading Text</h1>
<p>This tag will contain the text which we want to appear on our slide.</p>
<p><a class="btn btn-large btn-primary">Sign Up</a></p>
</div>
</div>
</div>
<div class="item">
<img src="img/image2.jpg"/>
<div class="container">
<div class="carousel-caption">
<h1>My Heading Text</h1>
<p>This tag will contain the text which we want to appear on our slide.</p>
<p><a class="btn btn-large btn-primary">Sign Up</a></p>
</div>
</div>
</div>
<div class="item">
<img src="img/image3.jpg"/>
<div class="container">
<div class="carousel-caption">
<h1>My Heading Text</h1>
<p>This tag will contain the text which we want to appear on our slide.</p>
<p><a class="btn btn-large btn-primary">Sign Up</a></p>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<!-- Grid
===============================-->
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>First Heading</h2>
<p>Some text will go here Some text will go here Some text will go here Some text will go here Some text will go here</p>
</div>
<div class="col-md-4">
<h2>First Heading</h2>
<p>Some text will go here Some text will go here Some text will go here Some text will go here Some text will go here</p>
</div>
<div class="col-md-4">
<h2>First Heading</h2>
<p>Some text will go here Some text will go here Some text will go here Some text will go here Some text will go here</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h1>First Heading</h1>
<p>
Some text will go here Some text will go here Some text will go here
Some text will go here Some text will go here Some text will go here
</p>
</div>
<div class="col-md-6">
<h1>First Heading</h1>
<p>
Some text will go here Some text will go here Some text will go here
Some text will go here Some text will go here Some text will go here
</p>
</div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>