-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
206 lines (187 loc) · 7.24 KB
/
index.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>twitter bootstrap tutorial</title>
<!--bootstrap style-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!--bootstrap script-->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body style="padding-top:20px;" >
<!--navbar-->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">bootstrap blog</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#"><i class="glyphicon glyphicon-home"></i> home</a></li>
<li><a href="#">article</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">tutorial
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="dropdown-header"><ins>programming languages</ins></li>
<li><a href="#">html</a></li>
<li><a href="#">js framework</a></li>
<li><a href="#">css</a></li>
<li class="dropdown-header"><ins>last posts</ins></li>
<li><a href="#">bootstrap grid system</a></li>
<li><a href="#">bootstrap typography</a></li>
<li><a href="#">bootstrap tables</a></li>
<li><a href="#">bootstrap forms</a></li>
</ul>
</li>
<li><a href="#">contact</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><i class="glyphicon glyphicon-user"></i> sign up</a></li>
<li><a href="#"><i class="glyphicon glyphicon-lock"></i> login</a></li>
</ul>
</ul>
</div>
</div>
</nav>
<!--jumbotron-->
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-8">
<h1 style="color:#708bc8; font-size:32pt;">grid system</h1>
<p style="font-size:16pt;">
bootstrap includes a responsive, mobile first fluid grid system
that appropriately scales up to 12 columns as the device or viewport size increases.
it includes predefined classes for easy layout options, as well as powerful
mixins for generating more semantic layouts.
</p>
<a href="#" class="btn btn-info">continue</a>
</div>
<div class="col-md-4">
<img src="images/bgs.jpg" alt="" class="img-responsive thumbnail" style="margin-top:35px" width="345" >
</div>
</div>
<div class="container">
<div class="row">
<!--posts-->
<div class="col-md-8">
<h1 class="page-header">components</h1>
<!--first article-->
<h2><a href="#">overview</a></h2>
<p>
written by <span class="glyphicon glyphicon-user"></span> <a href="#">assem toumi(me)</a> at: <span class="glyphicon glyphicon-time"></span> 12/31/2019 - 1:40 pm
</p>
<img src="images/gsd.png" alt="" class="img-responsive thumbnail">
<hr>
<p>
grid systems are used for creating page layouts through a series of rows
and columns that house your content.
here's how the bootstrap grid system works..
</p>
<a href="#" class="btn btn-primary">read more<span class="glyphicon glyphicon-chevron-right"></span><a/>
<hr>
<!--2st article-->
<h2><a href="#">media queries</a></h2>
<p>
written by <span class="glyphicon glyphicon-user"></span> <a href="#">assem toumi(me)</a> at: <span class="glyphicon glyphicon-time"></span> 12/31/2019 - 1:40 pm
</p>
<img src="images/mq.jpg" alt="" class="img-responsive thumbnail">
<hr>
<p>
gwe use the following media queries in our less files to create the key breakpoints in our grid system..
</p>
<a href="#" class="btn btn-primary">read more<span class="glyphicon glyphicon-chevron-right"></span><a/>
<hr>
<!--3th article-->
<h2><a href="#">grid options</a></h2>
<p>
written by <span class="glyphicon glyphicon-user"></span> <a href="#">assem toumi(me)</a> at: <span class="glyphicon glyphicon-time"></span> 12/31/2019 - 1:40 pm
</p>
<img src="images/gopp.jpg" alt="" class="img-responsive thumbnail" width="660">
<hr>
<p>
see how aspects of the bootstrap grid system work across multiple devices with a handy table..
</p>
<a href="#" class="btn btn-primary">read more<span class="glyphicon glyphicon-chevron-right"></span></a>
<hr>
<ul class="pager">
<li class="previous"><a href="#">← older</a></li>
<li class="next"><a href="#">newer →</a></li>
</div>
<!--sidebar-->
<div class="col-md-4">
<!--search-->
<div class="well">
<h4>search here:</h4>
<div class="input-group">
<input type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-primary" type="button">
<span class="glyphicon glyphicon-search"></span>
</span>
</div>
</div>
<!--categories-->
<div class="well">
<h4>categories:</h4>
<div class="row">
<div class="col-sm-6">
<ul class="list-unstyled">
<li><a href="#">html</a></li>
<li><a href="#">js framework</a></li>
<li><a href="#">css</a></li>
<li><a href="#">sublime text</a></li>
<li><a href="#">jquery</a></li>
<li><a href="#">font awesome</a></li>
</ul>
</div>
<div class="col-sm-6">
<ul class="list-unstyled">
<li><a href="#">html</a></li>
<li><a href="#">js framework</a></li>
<li><a href="#">css</a></li>
<li><a href="#">sublime text</a></li>
<li><a href="#">jquery</a></li>
<li><a href="#">font awesome</a></li>
</ul>
</div>
</div>
</div>
<!--popular posts-->
<div class="well">
<h4>Popular posts:</h4>
<ul class="list-unstyled">
<li><a href="#">getting started</a></li>
<li><a href="#">grid system</a></li>
<li><a href="#">typography</a></li>
<li><a href="#">code</a></li>
<li><a href="#">tables</a></li>
<li><a href="#">forms</a></li>
<li><a href="#">buttons</a></li>
<li><a href="#">images</a></li>
<li><a href="#">helper classes</a></li>
<li><a href="#">responsive utilities</a></li>
<li><a href="#">using less</a></li>
<li><a href="#">using sass</a></li>
</ul>
</div>
</div>
</div>
<hr>
<footer>
<div class="row">
<div class="col-md-12">
<p style="font-size:12pt;"> Copyright © Assem Toumi - 2019</p>
</div>
</div>
</footer>
</div>
</body>
</html>