-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
725 lines (605 loc) · 32.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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Data -->
<title>Communauté AZUG FR</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="author" content=""/>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="img/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="img/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="img/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="img/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="img/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="img/apple-touch-icon-152x152.png" />
<!--Google Fonts-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:400,700,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!--Font Awesome-->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!--Stylesheets-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/owl.carousel.css" rel="stylesheet">
<link href="css/owl.theme.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet"> <!-- animations css -->
<link href="css/slidingmenu.css" rel="stylesheet"> <!-- slide menu css -->
<link href="style.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- Analytics - VS Application Insights -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--
To collect end-user usage analytics about your application,
insert the following script into each page you want to track.
Place this code immediately before the closing </head> tag,
and before any other scripts. Your first data will appear
automatically in just a few seconds.
-->
<script type="text/javascript">
var appInsights=window.appInsights||function(config){
function i(config){t[config]=function(){var i=arguments;t.queue.push(function(){t[config].apply(t,i)})}}var t={config:config},u=document,e=window,o="script",s="AuthenticatedUserContext",h="start",c="stop",l="Track",a=l+"Event",v=l+"Page",y=u.createElement(o),r,f;y.src=config.url||"https://az416426.vo.msecnd.net/scripts/a/ai.0.js";u.getElementsByTagName(o)[0].parentNode.appendChild(y);try{t.cookie=u.cookie}catch(p){}for(t.queue=[],t.version="1.0",r=["Event","Exception","Metric","PageView","Trace","Dependency"];r.length;)i("track"+r.pop());return i("set"+s),i("clear"+s),i(h+a),i(c+a),i(h+v),i(c+v),i("flush"),config.disableExceptionTracking||(r="onerror",i("_"+r),f=e[r],e[r]=function(config,i,u,e,o){var s=f&&f(config,i,u,e,o);return s!==!0&&t["_"+r](config,i,u,e,o),s}),t
}({
instrumentationKey:"4978fa62-f919-4256-b64d-7a65b774bb47"
});
window.appInsights=appInsights;
appInsights.trackPageView();
</script>
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- end Analytics - VS Application Insights -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
</head>
<body data-spy="scroll" data-target=".scrollspy" data-offset="100">
<!--Prealoader-->
<div id="preloader">
<div id="status">
<div class="spinner">
<div class="dot1"></div>
<div class="dot2"></div>
</div>
</div>
</div>
<!-- End Prealoader-->
<!--MOBILE NAVIGATION /// hidden on large devices -->
<nav class="menu slide-menu-left hidden-lg text-left">
<ul>
<!--<li><a href="https://www.eventbrite.fr/e/billets-global-azure-france-2023-globalazure-583911584267"><img src="img/gab/GlobalAzure2023alert.png" alt="gab" class="img-responsive"></a></li>-->
<li><img src="img/logo.png" alt="Logo" class="img-responsive"></li>
<li class="active"><a href="#intro">Accueil</a></li>
<li><a href="#about">A propos</a></li>
<li><a href="#team">Equipe</a></li>
<!-- <li><a href="#events">Evènements</a></li> -->
<!-- <li><a href="#portfolio">Portfolio</a></li> -->
<!-- <li><a href="#homepageBlog">Blog</a></li> -->
<li><a href="#contact">Contact</a></li>
<li><a class="btn btn-default close-menu"><i class="glyphicon glyphicon-remove text-right"></i> FERMER</a>
</li>
</ul>
</nav>
<!--nav toggler-->
<div class="container-fluid hidden-lg">
<div class="sm-nav navbar-fixed-top">
<div class="nav-toggler toggle-slide-left"><i class="fa fa-bars sm-nav-toggler"></i></div>
</div>
</div>
<!--end nav toggler-->
<!--end MOBILE NAVIGATION /// hidden on large devices -->
<!-- NAVIGATION /// hidden on small devices -->
<header class="visible-lg">
<div class="container-fluid navbar-fixed-top" data-spy="affix" data-offset-top="60" data-offset-bottom="200">
<div class="row">
<!-- <div class="col-md-3 text-left">
<a href="https://www.eventbrite.fr/e/billets-global-azure-france-2023-globalazure-583911584267"><img src="img/gab/GlobalAzure2023alert.png" alt="gab" class="img-responsive"></a>
<a class="navbar-brand" href="#intro"><img src="img/logo.png" alt="Logo" class="img-responsive"></a>
</div> -->
<div class="col-md-9">
<div class="scrollspy" data-offset="300">
<ul class="nav navbar-nav">
<li class="active"><a href="#intro">Accueil</a></li>
<li><a href="#about">A propos</a></li>
<li><a href="#team">Equipe</a></li>
<!-- <li><a href="#events">Evènements</a></li> -->
<!-- <li><a href="#portfolio">Portfolio</a></li> -->
<!-- <li><a href="#homepageBlog">Blog</a></li> -->
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- end NAVIGATION /// hidden on small devices -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--Intro -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<section id="intro">
<div class="container text-center valign">
<div class="row">
<div class="col-md-12 text-center">
<div class="carouselWrapper">
<div class="owl-carousel" id="owl-intro">
<!--slide-->
<div class="introItem">
<i class="fa fa-thumbs-up fa-5x"></i>
<h1>AZUG.FR<small> - Azure User Group France</small></h1>
<span class="subblack">La communauté evolue</span>
</div>
<!--end slide-->
<!--slide-->
<div class="introItem">
<i class="fa fa-star fa-5x"></i>
<h1>La communauté <small>française des utilisateurs du cloud </small>Microsoft Azure </h1>
<span class="subblack">Des nouveautés de jour en jour</span>
</div>
<!--end slide-->
</div>
</div>
</div>
</div>
</div>
</section>
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- End Intro -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--A propos -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<section id="about">
<div class="container">
<!--start heading-->
<div class="row">
<div class="heading text-center">
<div class="col-md-offset-2 col-md-8 col-sm-12 col-xs-12">
<div class="sectionTitle">
<h2>
Un espace d'échanges <br>
<small>entre passionnés et curieux</small>
</h2>
<span class="sub">Entraide et convivialité</span>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="intro-text col-md-offset-2 col-md-8 text-center">
<div class="owl-carousel" id="owl-about">
<!--first slide-->
<!--<div class="aboutItem">
Text 1
</div>-->
<!--end first slide-->
<!--second slide-->
<!--<div class="aboutItem">
Text 2
</div>-->
<!--end second slide-->
</div>
<hr>
</div>
</div>
<!--end heading-->
<!--start content-->
<div class="row">
<!--item-->
<div class="col-md-4 col-xs-12 col-sm-12 text-center">
<div class="item">
<div class="icon">
<i class="fa fa-rocket fa-4x "></i>
</div>
<div class="info">
<h4>
<span class="bold">Nouveautés</span>
<br>
<small>Toutes les news.</small>
</h4>
<p>
Afin de connaître toutes les dernières nouveautés mises en place par Microsoft dans Azure, vous trouverez dans la communauté les dernières informations ainsi que les retours sur les 1ers tests effectués par les MVP.
</p>
</div>
</div>
</div>
<!--end item-->
<!--item-->
<div class="col-md-4 col-xs-12 col-sm-12 text-center">
<div class="item">
<div class="icon">
<i class="fa fa-magic fa-4x "></i>
</div>
<div class="info">
<h4>
<span class="bold">Ressources</span>
<br>
<small>Des conseils et tutoriels</small>
</h4>
<p>
Pour ceux qui souhaitent mieux comprendre ou apprendre certains points techniques, nous tentons d'agréger les tutoriels les plus intéressants sur notre plateforme web et proposons les slides relatifs aux évènements couverts par nos spécialistes.
</p>
</div>
</div>
</div>
<!--end item-->
<!--item-->
<div class="col-md-4 col-xs-12 col-sm-12 text-center">
<div class="item">
<div class="icon">
<i class="fa fa-smile-o fa-4x "></i>
</div>
<div class="info">
<h4>
<span class="bold">Echanges</span>
<br>
<small>Des retours d'expériences</small>
</h4>
<p>
Du simple utilisateur à l'expert confirmé, les échanges concernant les retours d'expérience sont toujours très enrichissant lorsqu'ils sont partagés. Mais ce peut également être des questions générales ou sur un cas précis qui aurait pu être rencontré par d'autres.
</p>
</div>
</div>
</div>
<!--end item-->
</div>
<!--end content-->
</div>
</section>
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- End A propos -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- Separator -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- <section class="separator">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h3>
Vous voulez nous rejoindre ?
<small> N'hésitez pas</small>
</h3>
<div class="social-icons">
<a href="https://twitter.com/AZUGFR"><i class="fa fa-twitter-square fa-4x"></i></a>
<a href="https://www.facebook.com/groups/azugfr/"><i class="fa fa-facebook-square fa-4x"></i></a>
</div>
</div>
</div>
</div>
</section> -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- End Separator -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--Equipe -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<section id="team">
<div class="container">
<!--heading-->
<div class="row">
<div class="heading text-center">
<div class="col-md-offset-2 col-md-8 col-sm-12 col-xs-12">
<div class="sectionTitle">
<i class="fa fa-users fa-3x sectionTitleIcon"></i>
<h2>
<small>Voici</small>
notre équipe
</h2>
<span class="sub">pour animer la communauté</span>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="intro-text col-md-offset-2 col-md-8 text-center">
Vous pouvez nous rejoindre à tout moment si vous souhaitez vous investir dans la communauté.
<hr>
</div>
</div>
<!--end heading-->
<!--content-->
<div class="row">
<div class="owl-carousel" id="owl-team">
<!--member-->
<div class="member text-center">
<div class="memberName">
Aymeric Weinbach
</div>
<div class="memberCity"><span class="sub">Versailles</span></div>
<p class="memberDescription">
MVP Microsoft Azure interviens<br /> dans les projets innovants sur Azure, Xamarin, les objets connectés, la robotique, l’impression 3D.
<br>
<br>
<a href="https://twitter.com/aymericw" target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://fr.linkedin.com/in/aymeric-weinbach-73b4a76" target="_blank"><i class="fa fa-linkedin-square fa-lg"></i></a>
<a href="http://www.zecloud.fr/" target="_blank"><i class="fa fa-dribbble fa-lg"></i></a>
</p>
<img alt="img-responsive" src="img/team/aymeric.png">
</div>
<!--end member-->
<!--member-->
<div class="member text-center">
<div class="memberName">
Cédric Leblond
</div>
<div class="memberCity"><span class="sub">Paris</span></div>
<p class="memberDescription">
Consultant ALM, DevOps, Agile <br>
MVP Azure <br>
.NET/Azure Ranger.
<br>
<br>
<a href="https://twitter.com/leblond_c" target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://www.linkedin.com/in/cedric-leblond-devops-agile/" target="_blank"><i class="fa fa-linkedin-square fa-lg"></i></a>
<a href="https://dotnetrangers.wordpress.com/" target="_blank"><i class="fa fa-dribbble fa-lg"></i></a>
</p>
<img alt="img-responsive" src="img/team/cedric.png">
</div>
<!--end member-->
<!--member-->
<div class="member text-center">
<div class="memberName">
Jean-Luc Boucho
</div>
<div class="memberCity"><span class="sub">Paris</span></div>
<p class="memberDescription">
Architecte chez Infosys, <br>
MVP Microsoft Azure <br>
Formateur certifié Microsoft MCT.
<br>
<br>
<a href="https://twitter.com/JeanLucBoucho" target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://fr.linkedin.com/in/jeanlucboucho/fr" target="_blank"><i class="fa fa-linkedin-square fa-lg"></i></a>
<a href="http://blog.jeanlucboucho.com/" target="_blank"><i class="fa fa-dribbble fa-lg"></i></a>
</p>
<img alt="img-responsive" src="img/team/jeanluc.png">
</div>
<!--end member-->
<!--member-->
<div class="member text-center">
<div class="memberName">
Marius Zaharia
</div>
<div class="memberCity"><span class="sub">Paris</span></div>
<p class="memberDescription">
Cloud Senior Architect<br>
<br>
<br>
<a href="https://twitter.com/lecampusazure" target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://fr.linkedin.com/in/mzaharia" target="_blank"><i class="fa fa-linkedin-square fa-lg"></i></a>
<a href="http://blog.lecampusazure.net/" target="_blank"><i class="fa fa-dribbble fa-lg"></i></a>
</p>
<img alt="img-responsive" src="img/team/marius.png">
</div>
<!--end member-->
<!--member
<div class="member text-center">
<div class="memberName">
Michel Hubert
</div>
<div class="memberCity"><span class="sub">Paris</span></div>
<p class="memberDescription">
Manager Pôle Cloud & Integration <br>
chez Cellenza.
<br>
<br>
<a href="https://www.facebook.com/michel.hubert.507" target="_blank"><i class="fa fa-facebook fa-lg"></i></a>
<a href="https://twitter.com/MichelHubert" target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://fr.linkedin.com/in/hubertmichel" target="_blank"><i class="fa fa-linkedin-square fa-lg"></i></a>
<a href="http://hubertmichel.wordpress.com/" target="_blank"><i class="fa fa-dribbble fa-lg"></i></a>
</p>
<img alt="img-responsive" src="img/team/michel.png">
</div>
end member-->
<!--member-->
<div class="member text-center">
<div class="memberName">
Vincent Thavonekham
</div>
<div class="memberCity"><span class="sub">Lyon</span></div>
<p class="memberDescription">
Manager/formateur/MVP Azure <br>
et DevOps travaillant avec les technologies Microsoft <br>
depuis 2001, en UK puis en France. <br>
<br>
<a href="https://twitter.com/vThavo" target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://fr.linkedin.com/in/thavo" target="_blank"><i class="fa fa-linkedin-square fa-lg"></i></a>
</p>
<img alt="img-responsive" src="img/team/vincent.png">
</div>
<!--end member-->
<!--member
<div class="member text-center">
<div class="memberName">
Samir Arezki
</div>
<div class="memberCity"><span class="sub">Lyon</span></div>
<p class="memberDescription">
Architecte Logiciel, Exakis.<br>
MVP Azure<br>
<br>
<a href="https://twitter.com/itfana" target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://fr.linkedin.com/in/arezkisamir" target="_blank"><i class="fa fa-linkedin-square fa-lg"></i></a>
</p>
<img alt="img-responsive" src="img/team/samir.png">
</div>
end member-->
</div>
</div>
<!--end content-->
</div>
</section>
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- End Equipe -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--Sponsors -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- <section id="sponsors">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="sectionTitle">
<h3>
Nos Sponsors
</h3>
<span class="subWhite">avec tous nos remerciements</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-xs-12 text-center">
<div class="owl-carousel" id="owl-sponsors">
<a href="http://www.microsoft.com/enterprise/fr-fr/default.aspx#fbid=OXR9XPTcT5z"><img class="img-responsive" src="img/sponsors/microsoft.png" alt="Microsoft"></a>
</div>
<div class="customNavigation">
<a class="btn prev"><i class="fa fa-angle-left fa-3x"></i></a>
<a class="btn next"><i class="fa fa-angle-right fa-3x"></i></a>
</div>
</div>
</div>
</div>
</section> -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--end Sponsors -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- separator -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<section class="separator">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h3>
Rejoignez-vous
<small> Nous suivre sur les réseaux sociaux</small>
</h3>
<div class="social-icons">
<a href="https://twitter.com/AZUGFR" ><i class="fa fa-twitter-square fa-4x"></i></a>
<a href="https://www.facebook.com/groups/azugfr/"><i class="fa fa-facebook-square fa-4x"></i></a>
<a href="https://www.linkedin.com/groups/8315615"><i class="fa fa-linkedin-square fa-4x"></i></a>
</div>
</div>
</div>
</div>
</section>
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- end separator -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- Contact -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<section id="contact">
<div class="container">
<!--heading-->
<div class="row">
<div class="heading text-center">
<div class="col-md-offset-2 col-md-8 col-sm-12 col-xs-12">
<div class="sectionTitle">
<i class="fa fa-asterisk fa-3x sectionTitleIcon"></i>
<h2>
N'hésitez pas
<small>Contactez-nous</small>
</h2>
<span class="sub">Réponse aussi rapide que possible</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="intro-text col-md-offset-2 col-md-8 text-center">
Pour toute demande d'information, merci de nous contacter à l'adresse suivante :<A HREF="mailto:[email protected]">[email protected]</A>...
<hr>
</div>
</div>
<!--end heading-->
<!--content-->
<div class="row text-center">
<!--form-->
<!-- <div class="col-md-6">
<form method="post" action="process.php">
<div class="form-group">
<input class="form-control" name="contactName" id="contactName" placeholder="Entrez votre nom" type="text">
</div>
<div class="form-group">
<input class="form-control" name="contactInputEmail" id="contactInputEmail" placeholder="Entrez votre email" type="email">
</div>
<div class="form-group">
<textarea class="form-control" name="contactMessage" id="contactMessage" placeholder="Message" cols="25" rows="6">
</textarea>
</div>
<button class="btn btn-default" type="submit">ENVOYER</button>
</form>
</div> -->
<!--end form-->
</div>
<!--end content-->
</div>
</section>
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- End Contact -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- footer -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<footer>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<img src="img/logo.png" alt="Logo">
<p>
© Tous droits réservés.
</p>
</div>
</div>
</div>
</footer>
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- End footer -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- JS plugins -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/modernizr.custom.js"></script>
<script src="js/nav.js"></script>
<script src="js/isotope.pkgd.js" type="text/javascript"></script>
<script src="js/jquery.backstretch.js" type="text/javascript"></script>
<script src="js/jquery.parallax-1.1.3.js" type="text/javascript"></script>
<script src="js/owl.carousel.js" type="text/javascript"></script>
<script src="js/waypoints.min.js" type="text/javascript"></script>
<script src="js/counter.js" type="text/javascript"></script>
<script src="js/jquery.fitvids.js" type="text/javascript"></script>
<script src="js/jquery.magnific-popup.js" type="text/javascript"></script>
<script src="js/imagesloaded.pkgd.js" type="text/javascript"></script>
<script src="js/wow.min.js"></script>
<script src="js/retina.min.js"></script>
<script src="js/okvideo.min.js"></script>
<script src="js/custom.js" type="text/javascript"></script>
<script>
/* BACKSTRETCH FULL WIDTH INTRO IMAGE */
$('#intro').ready(function() {
$.backstretch("img/banner.png");
});
</script>
<script>
<!--ANIMATIONS -->
$('#about .item').addClass('wow animated bounceIn');
$('#contact .contactItem').addClass('wow animated bounceIn');
$('.heading').addClass('wow animated fadeInUp');
$('.parallaxTitle').addClass('wow animated fadeInUp');
$('.serviceItem').addClass('wow animated flipInY');
$('.tableWrapper').addClass('wow animated flipInY');
</script>
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
<!-- end JS plugins -->
<!--~~~~~~~~~~~~~~~~~~~~~~~~-->
</body>
</html>