-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
228 lines (223 loc) · 12.1 KB
/
template.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Put the unique description of the page here">
<meta name="author" content="Dipan Ghosh">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Dipan Ghosh, Dipan, Ghosh">
<!-- Be sure to change this up! -->
<title>Sitewide Template</title>
<!-- Bootstrap -->
<link href="./css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="./css/custom.css" type="text/css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[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>
<nav class="navbar navbar-default " role = "navigation">
<div class="container-fluid container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#defaultNavbar1"><span id="mobileMenu" class="white"> Menu </span> <span class="glyphicon glyphicon-chevron-down white"></span> </button>
<a class="navbar-brand" href="http://thedesignerd.in"><img src="./images/brand.svg" alt="" id="navbrand"></a></div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="defaultNavbar1">
<ul class="nav navbar-nav">
<li class="active"><a href="#"><img src="./images/home-icon.svg" alt="">Home<span class="sr-only">(current)</span></a></li>
<li><a href="work.html"><img src="./images/work-icon.svg" alt="">Work</a></li>
<li><a href="photos.html"><img src="./images/photos-icon.svg" alt="">Photos</a></li>
<li><a href="designs.html"><img src="./images/designs-icon.svg" alt="">Designs</a></li>
<li><a href="meandus.html"><img src="./images/meandus-icon.svg" alt="">Me and Us</a></li>
<li><a href="blog.html"><img src="./images/blog-icon.svg" alt="">Blog</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1 class="text-center">Bootstrap with Dreamweaver</h1>
</div>
</div>
<hr>
</div>
<div class="container">
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">Click outside the blue container to select this <strong>row</strong>. Columns are always contained within a row. <strong>Rows are indicated by a dashed grey line and rounded corners</strong>. </div>
</div>
<hr>
<div class="row">
<div class="text-justify col-sm-4"> Click here to select this<strong> column.</strong> Always place your content within a column. Columns are indicated by a dashed blue line. </div>
<div class="col-sm-4 text-justify"> You can <strong>resize a column</strong> using the handle on the right. Drag it to increase or reduce the number of columns.</div>
<div class="col-sm-4 text-justify"> You can <strong>offset a column</strong> using the handle on the left. Drag it to increase or reduce the offset. </div>
</div>
<hr>
<div class="row">
<div class="text-center col-md-12">
<div class="well"><strong> Easily build your page using the Bootstrap components from the Insert panel.</strong></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 text-center">
<h4>Adding <strong>Buttons</strong></h4>
<p>Quickly add buttons to your page by using the button component in the insert panel. </p>
<button type="button" class="btn btn-info btn-sm">Info Button</button>
<button type="button" class="btn btn-success btn-sm">Success Button</button>
</div>
<div class="text-center col-sm-4">
<h4>Adding <strong>Labels</strong></h4>
<p>Using the insert panel, add labels to your page by using the label component.</p>
<span class="label label-warning">Info Label</span><span class="label label-danger">Danger Label</span> </div>
<div class="text-center col-sm-4">
<h4>Adding <strong>Glyphicons</strong></h4>
<p>You can also add glyphicons to your page from within the insert panel.</p>
<div class="row">
<div class="col-xs-4"><span class="glyphicon glyphicon-menu-hamburger" aria-hidden="true"></span></div>
<div class="col-xs-4"><span class="glyphicon glyphicon-home" aria-hidden="true"> </span> </div>
<div class="col-xs-4"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></div>
</div>
</div>
</div>
<hr>
<hr>
</div>
<div class="container">
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">Click outside the blue container to select this <strong>row</strong>. Columns are always contained within a row. <strong>Rows are indicated by a dashed grey line and rounded corners</strong>. </div>
</div>
<hr>
<div class="row">
<div class="text-justify col-sm-4"> Click here to select this<strong> column.</strong> Always place your content within a column. Columns are indicated by a dashed blue line. </div>
<div class="col-sm-4 text-justify"> You can <strong>resize a column</strong> using the handle on the right. Drag it to increase or reduce the number of columns.</div>
<div class="col-sm-4 text-justify"> You can <strong>offset a column</strong> using the handle on the left. Drag it to increase or reduce the offset. </div>
</div>
<hr>
<div class="row">
<div class="text-center col-md-12">
<div class="well"><strong> Easily build your page using the Bootstrap components from the Insert panel.</strong></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 text-center">
<h4>Adding <strong>Buttons</strong></h4>
<p>Quickly add buttons to your page by using the button component in the insert panel. </p>
<button type="button" class="btn btn-info btn-sm">Info Button</button>
<button type="button" class="btn btn-success btn-sm">Success Button</button>
</div>
<div class="text-center col-sm-4">
<h4>Adding <strong>Labels</strong></h4>
<p>Using the insert panel, add labels to your page by using the label component.</p>
<span class="label label-warning">Info Label</span><span class="label label-danger">Danger Label</span> </div>
<div class="text-center col-sm-4">
<h4>Adding <strong>Glyphicons</strong></h4>
<p>You can also add glyphicons to your page from within the insert panel.</p>
<div class="row">
<div class="col-xs-4"><span class="glyphicon glyphicon-menu-hamburger" aria-hidden="true"></span></div>
<div class="col-xs-4"><span class="glyphicon glyphicon-home" aria-hidden="true"> </span> </div>
<div class="col-xs-4"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></div>
</div>
</div>
</div>
<hr>
<hr>
</div>
<div class="container">
<div class="row text-center">
<div class="col-md-6 col-md-offset-3">Click outside the blue container to select this <strong>row</strong>. Columns are always contained within a row. <strong>Rows are indicated by a dashed grey line and rounded corners</strong>. </div>
</div>
<hr>
<div class="row">
<div class="text-justify col-sm-4"> Click here to select this<strong> column.</strong> Always place your content within a column. Columns are indicated by a dashed blue line. </div>
<div class="col-sm-4 text-justify"> You can <strong>resize a column</strong> using the handle on the right. Drag it to increase or reduce the number of columns.</div>
<div class="col-sm-4 text-justify"> You can <strong>offset a column</strong> using the handle on the left. Drag it to increase or reduce the offset. </div>
</div>
<hr>
<div class="row">
<div class="text-center col-md-12">
<div class="well"><strong> Easily build your page using the Bootstrap components from the Insert panel.</strong></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 text-center">
<h4>Adding <strong>Buttons</strong></h4>
<p>Quickly add buttons to your page by using the button component in the insert panel. </p>
<button type="button" class="btn btn-info btn-sm">Info Button</button>
<button type="button" class="btn btn-success btn-sm">Success Button</button>
</div>
<div class="text-center col-sm-4">
<h4>Adding <strong>Labels</strong></h4>
<p>Using the insert panel, add labels to your page by using the label component.</p>
<span class="label label-warning">Info Label</span><span class="label label-danger">Danger Label</span> </div>
<div class="text-center col-sm-4">
<h4>Adding <strong>Glyphicons</strong></h4>
<p>You can also add glyphicons to your page from within the insert panel.</p>
<div class="row">
<div class="col-xs-4"><span class="glyphicon glyphicon-menu-hamburger" aria-hidden="true"></span></div>
<div class="col-xs-4"><span class="glyphicon glyphicon-home" aria-hidden="true"> </span> </div>
<div class="col-xs-4"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></div>
</div>
</div>
</div>
<hr>
<hr>
</div>
<footer class="row container-fluid">
<div class="container">
<figure class="text-center col-md-offset-0 col-md-3"> <img src="./images/brand-footer.svg" alt="" id="footerbrand"> </figure>
<div class="text-center col-md-offset-0 col-md-3 footercontact col-lg-5">
<div class="text-center row"> <a href="https://www.facebook.com/dipan.ghosh.10" class="sb facebook">Facebook</a> <a href="https://twitter.com/ThisisDipan" class="sb twitter">Twitter</a> <a href="https://plus.google.com/+DipanGhosh" class="sb google">Linkedin</a> <a href="https://www.youtube.com/channel/UCuVznyH32OZUQZnJrYxAwFw" class="sb youtube">Youtube</a> <a href="https://www.linkedin.com/in/dipan-ghosh-17842257/https://www.linkedin.com/in/dipan-ghosh-17842257/" class="sb linkedin">LinkedIn</a> </div>
<a href="contact.php" class="white">
<button class="btn btn-info text-center" id = "contactbtn">
Contact me
</button></a>
</div>
<div class="text-center col-md-offset-0 col-md-3 col-lg-1">
<a href="sitemap.html" ><button class="btn btn-default" id="sitemapbtn">
Sitemap
</button></a>
</div>
<nav class="text-center col-md-offset-0 col-md-3">
<ul class="row" id="footermenulist">
<li class="col-md-3 white footermenu">Home</li>
<li class="col-md-3 white footermenu"><a href="work.html">Work</a></li>
<li class="col-md-3 white footermenu"><a href="photos.html">Photos</a></li>
<li class="col-md-3 white footermenu"><a href="designs.html">Designs</a></li>
<li class="col-md-3 white footermenu"><a href="meandus.html">Me and Us</a></li>
<li class="col-md-3 white footermenu"><a href="blog.html">Blog</a></li>
</ul>
</nav>
<p class="white">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Soluta libero obcaecati sed eveniet in magni deserunt! .</p>
</div>
<div class="text-center col-md-offset-0 col-md-12 black">
<p class="white">© 2017 Dipan Ghosh ALL RIGHTS RESERVED </p>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="./js/jquery-1.11.3.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="./js/bootstrap.js"></script>
<!-- SVGeezy fallback for SVGs being used-->
<script src="./js/svgeezy.min.js"></script>
<script>svgeezy.init('nocheck', 'png');</script>
<!-- Google Analyics Tracking code-->
<!--
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-91898116-1', 'auto');
ga('send', 'pageview');
</script>
-->
</body>
</html>