-
Notifications
You must be signed in to change notification settings - Fork 5
/
Arcade.html
410 lines (391 loc) · 14.2 KB
/
Arcade.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<!DOCTYPE html>
<html lang="en">
<head>
<title>Games Bond</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="keywords" />
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#080804">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#080804">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#080804">
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<link href="css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="css/chocolat.css" type="text/css" media="all">
<link href="//fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<link href='//fonts.googleapis.com/css?family=Roboto+Condensed:400,700italic,700,400italic,300italic,300' rel='stylesheet' type='text/css'>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
</head>
<body>
<!-- banner -->
<div class="banner">
<div class="agileinfo-dot">
<div class="agileits-logo">
<h1><a href="index.html">Games <span>Bond</span></a></h1>
</div>
<div class="header-top">
<div class="container">
<div class="header-top-info">
<nav class="navbar navbar-default">
<!-- 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="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse nav-wil" id="bs-example-navbar-collapse-1">
<nav>
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="#foot" class="scroll">About</a></li>
<li><a href="#markets" class="scroll">Latest Games</a></li>
</ul>
</nav>
</div>
<!-- /.navbar-collapse -->
</nav>
</div>
</div>
</div>
<div class="w3layouts-banner-info">
<div class="container">
<div class="w3layouts-banner-slider">
<div class="w3layouts-banner-top-slider">
<div class="slider">
<div class="callbacks_container">
<ul class="rslides callbacks callbacks1" id="slider4">
<li>
<div class="banner_text">
<h3>Gamers don't die</h3>
<p>They RESPAWN</p>
</div>
</li>
</ul>
</div>
<div class="clearfix"> </div>
<script src="js/responsiveslides.min.js"></script>
<script>
// You can also use "$(window).load(function() {"
$(function () {
// Slideshow 4
$("#slider4").responsiveSlides({
auto: true,
pager:true,
nav:true,
speed: 500,
namespace: "callbacks",
before: function () {
$('.events').append("<li>before event fired.</li>");
},
after: function () {
$('.events').append("<li>after event fired.</li>");
}
});
});
</script>
<!--banner Slider starts Here-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- //banner -->
<!-- markets -->
<div class="markets" id="markets">
<div class="container">
<div class="agileits-title">
<h3>Arcade</h3>
</div>
<div class="markets-grids">
<div class="col-md-4 w3ls-markets-grid">
<div class="agileits-icon-grid">
<div class="icon-right">
<table>
<tr>
<td><p><a href="alien assault.html"><img width="90%" src="img/Arcade/alien.jpg"></a></p>
<td><p><a href="balloony.html"><img width="90%" src="mobilee/Arcade/jungle.png"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="bomber knights.html"><img width="90%" src="mobilee/Arcade/tanks.png"></a></p>
<td><p><a href="brick galaxy.html"><img width="90%" src="mobilee/Arcade/omit.png"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="canyon valley rally.html"><img width="90%" src="mobilee/Arcade/donut.png"></a></p>
<td><p><a href="captain nutty.html"><img width="90%" src="mobilee/Arcade/piggy.png"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="crazy battle.html"><img width="90%" src="img/Arcade/crazy.jpg"></a></p>
<td><p><a href="fly and blast.html"><img width="90%" src="mobilee/Arcade/bottle.png"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="frontline.html"><img width="90%" src="img/Arcade/front.jpg"></a></p>
<td><p><a href="get off my roof.html"><img width="90%" src="mobilee/Arcade/color bound.png"></a></p>
</tr>
</table>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-4 w3ls-markets-grid">
<div class="agileits-icon-grid">
<div class="icon-right">
<table>
<tr>
<td><p><a href="go green go.html"><img width="90%" src="img/Arcade/go.jpg"></a></p>
<td><p><a href="gt racing champ.html"><img width="90%" src="mobilee/Arcade/99balls.png"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="lawmower.html"><img width="90%" src="mobilee/Arcade/non stop fidg.png"></a></p>
<td><p><a href="mafia kills.html"><img width="90%" src="img/Arcade/mafia.jpg"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="mini metro racers.html"><img width="90%" src="mobilee/Arcade/nballs.png"></a></p>
<td><p><a href="no mutants.html"><img width="90%" src="img/Arcade/no mut.jpg"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="phantom.html"><img width="90%" src="img/Arcade/phantom.jpg"></a></p>
<td><p><a href="pig wars.html"><img width="90%" src="mobilee/Arcade/samuraic spinner.png"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="pixel quest.html"><img width="90%" src="img/Arcade/pixel.jpg"></a></p>
<td><p><a href="rapidz 3d.html"><img width="90%" src="mobilee/Arcade/fidg spinner ext.png"></a></p>
</tr>
</table>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-4 w3ls-markets-grid">
<div class="agileits-icon-grid">
<div class="icon-right">
<table>
<tr>
<td><p><a href="rocketeer.html"><img width="90%" src="img/Arcade/rock.jpg"></a></p>
<td><p><a href="seig of troy 1.html"><img width="90%" src="img/Arcade/sieg.jpg"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="skater boy.html"><img width="90%" src="mobilee/Arcade/particolo.png"></a></p>
<td><p><a href="sky knight 2.html"><img width="90%" src="mobilee/Arcade/tap touch run.png"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="spartacus.html"><img width="90%" src="img/Arcade/spar.jpg"></a></p>
<td><p><a href="street hool.html"><img width="90%" src="mobilee/Arcade/oj.jpg"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="swamp treck.html"><img width="90%" src="mobilee/Arcade/doodle-jump.jpg"></a></p>
<td><p><a href="urban micro.html"><img width="90%" src="mobilee/Arcade/candy chain.jpg"></a></p>
</tr>
</table>
</div>
<div class="icon-right">
<table>
<tr>
<td><p><a href="wiggi world.html"><img width="90%" src="mobilee/Arcade/jigsaw.png"></a></p>
<td><p><a href="zombies impaler.html"><img width="90%" src="img/Arcade/zomb.jpg"></a></p>
</tr>
</table>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!-- //markets -->
<!-- testimonial -->
<div class="jarallax testimonial" id="testimonial">
<div class="testimonial-dot">
<div class="container">
<div class="agileits-title testimonial-heading">
<p></p>
<p></p>
<br><br><br><br><br><br><br><br><br>
</div>
</div>
</div>
</div>
<!-- mail -->
<div class="mail" id="mail">
<div class="container">
<div class="agileits-title">
<h3>Mail Us</h3>
</div>
<div class="w3_mail_grids">
<form action="https://formspree.io/[email protected]" method="POST">
<span class="input input--jiro">
<input class="input__field input__field--jiro" type="text" id="input-10" name="Name" placeholder="Your Name" required=""/>
<label class="input__label input__label--jiro" for="input-10">
<span class="input__label-content input__label-content--jiro">Your Name</span>
</label>
</span>
<span class="input input--jiro">
<input class="input__field input__field--jiro" type="email" id="input-11" name="Email" placeholder="Your Email Address" required=""/>
<label class="input__label input__label--jiro" for="input-11">
<span class="input__label-content input__label-content--jiro">Your Email</span>
</label>
</span>
<span class="input input--jiro">
<input class="input__field input__field--jiro" type="text" id="input-12" name="Phone Number" placeholder="Phone Number" required=""/>
<label class="input__label input__label--jiro" for="input-12">
<span class="input__label-content input__label-content--jiro">Phone Number</span>
</label>
</span>
<textarea name="Message" placeholder="Message..." required=""></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
</div>
<!-- footer -->
<div class="footer" id="foot">
<div class="container">
<div class="footer-top">
<div class="col-md-4 amet-sed">
<div class="footer-title">
<h3>About Us</h3>
</div>
<p>Games Bond is the largest source of the best free online games including funny games, flash games, arcade games, dress-up games, internet games, shooting games, word games, RPG games,and much more. Play Games on the One-and-Only Games Bond! Whatever game you feel like turning on, we've got it here. Including free online games! With tons of reviews & ratings, gamers of all skill levels are sure to find hot new games every day. This is the best place on the web to play games for free!</p>
</div>
<div class="col-md-4 amet-sed amet-medium">
<div class="footer-title">
<h3>About the creator</h3>
</div>
<p>What's up dear visiter. I'm Raj Pathare , an IT student who spends his most of the time surfing on the web for finding something unusual . Glad to see you here!</p>
<p>Contact me on <a href="https://www.facebook.com/raj.pathare.35">Facebook</a> if you wanna know more ! Thank you.</p>
</div>
<div class="col-md-4 amet-sed ">
<div class="footer-title">
<h3>Follow Us</h3>
</div>
<div class="agileinfo-social-grids">
<ul>
<li><a href="https://github.com/RajPathare"><img src="images/git1.png"></img></a></li>
</ul>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!-- //footer -->
<!-- copyright -->
<div class="copyright">
<div class="container">
<p class="footer-class">© 2017 Games Bond </p>
</div>
</div>
<!-- //copyright -->
<script src="js/jarallax.js"></script>
<script src="js/SmoothScroll.min.js"></script>
<script type="text/javascript">
/* init Jarallax */
$('.jarallax').jarallax({
speed: 0.5,
imgWidth: 1366,
imgHeight: 768
})
</script>
<script src="js/responsiveslides.min.js"></script>
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<!-- here stars scrolling icon -->
<script type="text/javascript">
$(document).ready(function() {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<!-- //here ends scrolling icon -->
<!-- Tabs-JavaScript -->
<script src="js/jquery.filterizr.js"></script>
<script src="js/controls.js"></script>
<script type="text/javascript">
$(function() {
$('.filtr-container').filterizr();
});
</script>
<!-- //Tabs-JavaScript -->
<!-- PopUp-Box-JavaScript -->
<script src="js/jquery.chocolat.js"></script>
<script type="text/javascript">
$(function() {
$('.filtr-item a').Chocolat();
});
</script>
<!-- //PopUp-Box-JavaScript -->
</body>
</html>