-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
555 lines (499 loc) · 19.3 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
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
<!DOCTYPE html>
<html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="Îndoire tablă Cluj-Napoca" />
<meta name="keywords" content="îndoire, tablă, cluj-napoca, abkant"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="icon" type="image/png" href="images/favicon.png"/>
<title>Îndoire tablă oțel, oțel inox, aluminiu — Cluj-Napoca - deplar.ro</title>
<!--google web font-->
<link href='http://fonts.googleapis.com/css?family=Vollkorn|Open+Sans' rel='stylesheet' type='text/css'>
<!--style sheets-->
<link rel="stylesheet" media="screen" href="css/style.css"/>
<link rel="stylesheet" media="screen" href="css/skeleton.css"/>
<!--jquery libraries / others are at the bottom-->
<script src="js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="js/modernizr.js" type="text/javascript"></script>
<!--slider scripts starts-->
<link rel="stylesheet" media="screen" href="css/flexslider.css"/>
<script src="js/jquery.flexslider-min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.image-slider').flexslider({
animation: "fade",
slideshowSpeed: 4000,
animationDuration: 1000,
controlNav: true,
keyboardNav: true,
directionNav: false,
pauseOnHover: true,
pauseOnAction: true
});
});
</script>
<!--slider scripts ends-->
<!--prettyPhoto scripts starts-->
<link rel="stylesheet" media="screen" href="css/prettyPhoto.css"/>
<script src="js/jquery.prettyPhoto.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('a[data-rel]').each(function() {
$(this).attr('rel', $(this).data('rel'));
});
$("a[rel^='prettyPhoto[gallery1]']").prettyPhoto({
animation_speed: 'fast',
slideshow: 5000,
autoplay_slideshow: false,
opacity: 0.80,
show_title: false,
theme: 'pp_default', /* light_rounded / dark_rounded / light_square / dark_square / facebook */
overlay_gallery: false,
social_tools: false,
changepicturecallback: function(){
var $pp = $('.pp_default');
if( parseInt( $pp.css('left') ) < 0 ){
$pp.css('left', 0 );
}
}
});
});
</script>
<!--prettyPhoto scripts ends-->
<!--carousel scripts starts-->
<link rel="stylesheet" media="screen" href="css/jcarousel.css"/>
<script src="js/jquery.jcarousel.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
var $postcarousel = $('#mycarousel');
if( $postcarousel.length ) {
var scrollCount;
if( $(window).width() < 480 ) {
scrollCount = 1;
} else if( $(window).width() < 768 ) {
scrollCount = 1;
} else if( $(window).width() < 960 ) {
} else {
scrollCount = 1;
}
$postcarousel.jcarousel({
easing: 'easeInOutQuint',
animation: 600,
scroll : scrollCount
});
}
});
</script>
<!--carousel scripts ends-->
<!--contact form scripts starts-->
<script src="js/jquery.validate.js" type="text/javascript"></script>
<script src="js/jquery.form.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
//Contact form
$(function() {
var v = $("#contactform").validate({
submitHandler: function(form) {
$(form).ajaxSubmit({
target: "#result",
clearForm: true
});
}
});
});
//To clear form field on page refresh
$('#contactform #message').val('');
});
</script>
<!--contact form scripts ends-->
</head>
<body>
<!-- analytics -->
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54405135-1', 'auto');
ga('send', 'pageview');
</script>
<!-- /analytics -->
<!--header_wrapper starts-->
<div id="header_wrapper">
<div class="container clearfix">
<!--header starts-->
<div id="header">
<!--logo starts-->
<div class="four columns logo alpha"> <a href="#header_wrapper">
<h1>deplar.ro</h1>
</a> </div>
<!--logo ends-->
<!--menu / navigation starts-->
<div id="nav" class="columns twelve omega">
<ul>
<li><a href="#features">Descriere</a></li>
<li><a href="#preturi">Prețuri</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!--menu / navigation ends-->
<div class="clear"></div>
</div>
<!--header ends-->
<!--slider starts-->
<div class="flexslider image-slider">
<ul class="slides">
<li><div><img src="content/deplar005.jpg" /></div></li>
<li><div><img src="content/deplar007.jpg" /></div></li>
<li><div><img src="content/deplar011.jpg" /></div></li>
<li><div><img src="content/deplar015.jpg" /></div></li>
<li><div><img src="content/deplar016.jpg" /></div></li>
<li><div><img src="content/deplar019.jpg" /></div></li>
<li><div><img src="content/deplar020.jpg" /></div></li>
<li><div><img src="content/deplar021.jpg" /></div></li>
<li><div><img src="content/deplar022.jpg" /></div></li>
<li><div><img src="content/deplar024.jpg" /></div></li>
<li><div><img src="content/deplar025.jpg" /></div></li>
</ul>
</div>
<!--slider ends-->
</div>
</div>
<!--header_wrapper ends-->
<!--features section starts-->
<div id="features" class="container clearfix">
<!--text and button-->
<div class="sixteen columns">
<h1>Îndoire tablă oțel, oțel inox, aluminiu — Cluj-Napoca</h1>
<p class="textstyle1">
Abkant CNC 80 tone forță
·
Zincare
·
Sudură
</p>
<div class="centerline">
<div class="button_wrapper"> <a href="#preturi" class="btn_yellow"><span>Prețuri</span></a></div>
</div>
</div>
<!--feature one starts-->
<div class="four columns">
<div class="icon_bg"><img src="images/icons/icon-1.png" width="92" height="92" alt="icon"></div>
<h4>Easy & Affordable</h4>
<p>There's a voice that keeps on calling me. Down the road, that's where I'll always be. I make a new friend.</p>
</div>
<!--feature one ends-->
<!--feature two starts-->
<div class="four columns">
<div class="icon_bg"><img src="images/icons/icon-2.png" width="92" height="92" alt="icon"></div>
<h4>Great Support</h4>
<p>Barnaby The Bear's my name, never call me Jack or James, I will sing my way to fame, Bear's my name.</p>
</div>
<!--feature two ends-->
<!--feature three starts-->
<div class="four columns">
<div class="icon_bg"><img src="images/icons/icon-3.png" width="92" height="92" alt="icon"></div>
<h4>Time Saving</h4>
<p>Typi non habent claritatem insitam legentis in iis qui facit eorum claritatem lius quod ii legunt saepius. </p>
</div>
<!--feature three ends-->
<!--feature four starts-->
<div class="four columns">
<div class="icon_bg"><img src="images/icons/icon-4.png" width="92" height="92" alt="icon"></div>
<h4>Always Secured</h4>
<p>Barnaby The Bear's my name, never call me Jack or James, I will sing my way to fame, Bear's my name.</p>
</div>
<!--feature four ends-->
</div>
<!--features section ends-->
<!--screenshots section starts-->
<div class="row_color">
<div id="screenshots" class="container clearfix">
<div class="columns sixteen">
<!--heading (do not remove clear below heading)-->
<h2>Screenshots</h2>
<p class="textstyle2">What you see is what you get</p>
<br class="clear"/>
<!--gallery / carousel starts-->
<ul id="mycarousel" class="jcarousel-skin-tango">
<li>
<div class="thumb"><a href="#"><img src="images/preview/thumb-1.jpg" alt="Image"/></a><a href="images/preview/large.jpg" data-rel="prettyPhoto[gallery1]" title="This is title of image" class="zoom zoom_icon"></a></div>
</li>
<li>
<div class="thumb"><a href="#"><img src="images/preview/thumb-2.jpg" alt="Image"/></a><a href="images/preview/large.jpg" data-rel="prettyPhoto[gallery1]" title="This is title of image" class="zoom zoom_icon"></a></div>
</li>
<li>
<div class="thumb"><a href="#"><img src="images/preview/thumb-3.jpg" alt="Image"/></a><a href="images/preview/large.jpg" data-rel="prettyPhoto[gallery1]" title="This is title of image" class="zoom zoom_icon"></a></div>
</li>
<li>
<div class="thumb"><a href="#"><img src="images/preview/thumb-2.jpg" alt="Image"/></a><a href="images/preview/large.jpg" data-rel="prettyPhoto[gallery1]" title="This is title of image" class="zoom zoom_icon"></a> </div>
</li>
<li>
<div class="thumb"><a href="#"><img src="images/preview/thumb-1.jpg" alt="Image"/></a><a href="images/preview/large.jpg" data-rel="prettyPhoto[gallery1]" title="This is title of image" class="zoom zoom_icon"></a></div>
</li>
<li>
<div class="thumb"><a href="#"><img src="images/preview/thumb-1.jpg" alt="Image"/></a><a href="images/preview/large.jpg" data-rel="prettyPhoto[gallery1]" title="This is title of image" class="zoom zoom_icon"></a></div>
</li>
</ul>
<!--gallery / carousel ends-->
</div>
</div>
</div>
<!--screenshots section ends-->
<!--team section starts-->
<div id="team" class="container clearfix">
<!--heading here-->
<div class="columns sixteen">
<h2>The Team</h2>
<p class="textstyle2">People behind this awesome application</p>
</div>
<!--member one starts-->
<div class="one-third column"> <img src="images/preview/team-member2.jpg" alt="image" class="image_left">
<h5>Jonhan Hart</h5>
<p class="textstyle3">Marketing Executive</p>
<ul class="team_info">
<li><a href="#"><img src="images/icons/team-social-mail.png" width="16" height="16" alt="icon">Send mail</a></li>
<li><a href="#"><img src="images/icons/team-social-url.png" width="16" height="16" alt="icon">http://somecompany.com</a></li>
<li><a href="#"><img src="images/icons/team-social-facebook.png" width="16" height="16" alt="icon">Facebook</a></li>
</ul>
<p>This is my boss, Jonathan Hart, a self-made millionaire, he's quite a guy. This is Mrs H., she's gorgeous, she's one lady who knows how to take care of herself. By the way, my name is Max. I take care of both of them, which ain't easy.</p>
</div>
<!--member one ends-->
<!--member two starts-->
<div class="one-third column"> <img src="images/preview/team-member1.jpg" alt="image" class="image_left">
<h5>Alizee Anderson</h5>
<p class="textstyle3">Chief of Operations</p>
<ul class="team_info">
<li><a href="#"><img src="images/icons/team-social-mail.png" width="16" height="16" alt="icon">Send mail</a></li>
<li><a href="#"><img src="images/icons/team-social-url.png" width="16" height="16" alt="icon">http://somecompany.com</a></li>
<li><a href="#"><img src="images/icons/team-social-linkedin.png" width="16" height="16" alt="icon">Linkedin</a></li>
</ul>
<p>This is my boss, Jonathan Hart, a self-made millionaire, he's quite a guy. This is Mrs H., she's gorgeous and knows how to take care of herself. By the way, my name is Max. I take care of both of them, which ain't easy.</p>
</div>
<!--member two ends-->
<!--member three starts-->
<div class="one-third column"> <img src="images/preview/team-member3.jpg" alt="image" class="image_left">
<h5>James Barnaby</h5>
<p class="textstyle3">Chief of Finance</p>
<ul class="team_info">
<li><a href="#"><img src="images/icons/team-social-mail.png" width="16" height="16" alt="icon">Send mail</a></li>
<li><a href="#"><img src="images/icons/team-social-url.png" width="16" height="16" alt="icon">http://somecompany.com</a></li>
<li><a href="#"><img src="images/icons/team-social-twitter.png" width="16" height="16" alt="icon">Twitter</a></li>
</ul>
<p>I never spend much time in school but I taught ladies plenty. It's true I hire my body out for pay, hey hey. I've gotten burned over Cheryl Tiegs, blown up for Raquel Welch. </p>
</div>
<!--member three ends-->
</div>
<!--team section ends-->
<!--download section starts-->
<div class="row_color">
<div id="download" class="container clearfix">
<div class="columns sixteen">
<!--grey logo-->
<div class="logo_grey"><img src="images/logo-mono.png" width="122" height="62" alt="logo"></div>
<h2>Don't wait. Indulge into the beauty of this awesome application</h2>
<ul class="textlist">
<li>30 days free trial</li>
<li>| </li>
<li> No credit card required </li>
<li>| </li>
<li><span class="coloredstrong">$10 /month</span> after end of trial period</li>
</ul>
<!--center aligned button-->
<div class="button_wrapper"> <a href="#" class="btn_yellow"><span>Download Today!</span></a></div>
</div>
</div>
</div>
<!--download section ends-->
<!--sub_footer section starts-->
<div id="sub_footer" class="container clearfix">
<!--about starts-->
<div class="one-third column">
<h2>The Studio</h2>
<p class="textstyle2">Know more</p>
<br class="clear"/>
<img src="images/preview/the-studio.jpg" width="290" height="110" alt="image" class="image_border">
<p>Ten years ago a crack commando unit was sent to prison by a military court for a crime they didn't commit. These men promptly escaped from a maximum security stockade to the Los Angeles underground. Today, still wanted by the government, they survive as soldiers of fortune.</p>
</div>
<!--about ends-->
<!--testimonial starts-->
<div class="one-third column">
<h2>Reviews</h2>
<p class="textstyle2">People say</p>
<br class="clear"/>
<ul class="testimonial">
<li> <img src="images/preview/logo-img1.png" width="122" height="36" alt="image" class="image_noborder"> "Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum." <span>- John Anderson, somecompany.com</span></li>
<li> <img src="images/preview/logo-img2.png" width="122" height="36" alt="image" class="image_noborder"> "Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem." <span>- Jack Barnaby, somecompany.com</span></li>
</ul>
</div>
<!--testimonial ends-->
<!--updates starts-->
<div class="one-third column">
<h2>Updates</h2>
<p class="textstyle2">Upgrade to new features & fixes</p>
<br class="clear"/>
<ul class="updates">
<li> <span class="coloredstrong">Version 1.2.4</span> <span class="smallstrong"> ( Released on April 26, 2012 )</span>
<div class="divider"></div>
<h6>What's new in this version?</h6>
<a href="#" class="btn">Upgrade</a> <br class="clear"/>
. Enhancements in UI elements<br/>
. Added extra functionality </li>
<li> <span class="coloredstrong">Version 1.2.5</span> <span class="smallstrong"> ( Released on May 5, 2012 )</span>
<div class="divider"></div>
<h6>What's new in this version?</h6>
<a href="#" class="btn">Upgrade</a> <br class="clear"/>
. Enhancements in UI elements<br/>
. Lorem ipsum dolor sit amet<br/>
. Fiant sollemnes in futurum<br/>
. Added extra functionality </li>
</ul>
</div>
<!--updates ends-->
</div>
<!--sub_footer section ends-->
<div class="row_color">
<div id="preturi" class="container clearfix">
<!--pricing_intro starts-->
<div class="pricing_intro columns sixteen">
<h2>Best and flexible plans to suite your business, and much more!</h2>
<p class="textstyle1">download a free trial. sign up in 60 seconds.</p>
</div>
<!--pricing_intro ends-->
<div class="six columns offset-by-five">
<div class="pricing_table featured_table">
<table border="0">
<thead>
<tr>
<th>Economy</th>
</tr>
</thead>
<tfoot>
<tr>
<td><div class="button_wrapper"><a href="#contact" class="btn_yellowsmall"><span>Contact</span></a></div></td>
</tr>
</tfoot>
<tbody>
<tr>
<td class="focus">$49.99 <span>per month</span></td>
</tr>
<tr>
<td>
<h6>Lungime maximă de îndoire</h6>
<p>2600 mm</p>
</td>
</tr>
<tr>
<td>
<h6>Grosime maximă de îndoire la 2600 mm</h6>
<p>8 mm</p>
</td>
</tr>
<tr>
<td>
<h6>Zincare</h6>
<p>DA</p>
</td>
</tr>
<tr>
<td>
<h6>Sudură</h6>
<p>DA</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!--table three ends-->
</div>
</div>
<!--contact section starts-->
<div class="row_color">
<div id="contact" class="container clearfix">
<!--heading here-->
<!--
<div class="columns sixteen">
<h2>Contact</h2>
<p class="textstyle2">just say hello! or send us a message</p>
</div>
<!--contact form starts-->
<!--
<div class="column on-thirds">
<form id="contactform" method="post" action="contact-action.php">
<fieldset>
<div class="column one-third alpha">
<ul>
<li>
<input type="text" name="name" placeholder="Nume" />
</li>
<li>
<input type="email" name="email" placeholder="Email-ul tău" class="required email"/>
</li>
<li>
<textarea name="message" id="message" class="required" placeholder="Scrie aici mesajul"></textarea>
</li>
<li>
<input class="submit" type="submit" value="Submit Message"/>
</li>
</ul>
</div>
<div class="column one-third omega">
<ul>
</ul>
<div id="result"></div>
</div>
</fieldset>
</form>
</div>
<!--contact form ends-->
<!--address / social starts-->
<div class="sixteen columns" style="text-align: center">
<p>
Persoana de contact
</p>
<div class="contact_info">
<p>Victor Sainiuc</p>
<a href="mailto:office@deplar.ro?subject=deplar.ro contact">office@deplar.ro</a>
<p>Telefon: 0722 505 821</p>
</div>
<p>
Sediu:<br />
Cluj-Napoca<br />
Calea Someșeni f.n. (lângă Gara Someșeni)
</p>
</div>
<!--address / social ends-->
<div class="divider"></div>
<div class="sixteen columns">
<div class="google-maps">
<iframe src="https://www.google.com/maps/embed/v1/place?q=46.778849%2C%2023.673044&zoom=14&key=AIzaSyAoCCxKqjPxX-P5v_oBDY89JIUazbMP3i8" width="600" height="450" frameborder="0" style="border:0"></iframe>
</div>
</div>
</div>
<!--footer starts-->
<div id="footer">
<p>DEPLAR.RO © 2012<span id="current_year"></span>. Toate drepturile rezervate.</p>
<ul>
<li><a href="#">Terms of use </a></li>
<li><a href="#">Privacy policy</a></li>
</ul>
<div class="clear"></div>
</div>
<!--footer ends-->
<div class="clear"></div>
</div>
<!--contact section ends-->
<!--other jqueries required-->
<script src="js/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="js/twitter.js" type="text/javascript"></script>
<script src="js/custom.js" type="text/javascript"></script>
<script type="text/javascript">
$('#current_year').text('-' + (new Date).getFullYear());
</script>
</body>
</html>