-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
474 lines (429 loc) · 41.4 KB
/
index.html
File metadata and controls
474 lines (429 loc) · 41.4 KB
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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Développement web et mobile à Bordeaux - RequestLab</title>
<meta name="description" content="RequestLab est une agence spécialisée dans le développement d'applications web et mobile, de sites internet et e-commerce.">
<meta name="keywords" content="requestlab, request, lab, web, mobile, internet, application, applications, site, sites, développement, dev, webapp, e-commerce, javascript, bordeaux">
<meta name="author" content="https://www.linkedin.com/company/requestlab">
<meta name="robots" content="index,follow,all,noodp,noydir">
<!-- First, load typos -->
<link href='//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic|Montserrat:400,700' rel='stylesheet' type='text/css'>
<!-- Favicons -->
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<meta name="application-name" content="RequestLab"/>
<meta name="msapplication-TileColor" content="#ffffff"/>
<!-- Données structurées -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Corporation",
"name": "RequestLab",
"description": "RequestLab est une agence web spécialisée dans le développement d'applications web et mobile, de sites internet et e-commerce.",
"email": "hello@requestlab.fr",
"logo": "https://requestlab.fr/images/requestlab-logo.png",
"address": {
"@type": "PostalAddress",
"addressCountry": "France",
"addressLocality": "Bordeaux",
"name": "RequestLab SAS",
"streetAddress": "22 rue Huguerie",
"postalCode": "33000"
},
"foundingDate": "2014-04-09"
}
</script>
<!-- Twitter -->
<meta name="twitter:title" content="RequestLab - Web et mobile">
<meta name="twitter:description" content="RequestLab est une agence web spécialisée dans le développement d'applications web et mobile, de sites internet et e-commerce.">
<meta name="twitter:url" content="https://requestlab.fr">
<meta name="twitter:image" content="https://requestlab.fr/images/requestlab_logo.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@requestlab">
<meta name="twitter:creator" content="@requestlab">
<!-- Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://requestlab.fr">
<meta property="og:title" content="RequestLab - Web et mobile">
<meta property="og:image" content="https://requestlab.fr/images/requestlab_logo.png">
<meta property="og:site_name" content="RequestLab">
<meta property="og:description" content="RequestLab est une agence web spécialisée dans le développement d'applications web et mobile, de sites internet et e-commerce.">
<link rel="stylesheet" href="/styles/main.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/snap.svg/0.5.1/snap.svg-min.js"></script>
</head>
<body class="loading">
<!--[if lt IE 10]><p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience.</p><![endif]-->
<span class="chargement">CHARGEMENT</span>
<div class="wrapper">
<header class="splash" id="splash" role="banner">
<svg class="splash__logo" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" viewBox="0 0 108 234" preserveAspectRatio="xMinYMin meet">
<?xml-stylesheet type="text/css" href="styles/main.css"?>
<!-- Montserrat is a trademark of Julieta Ulanovsky. -->
<!-- Copyright: Copyright 2014 Adobe System Incorporated. All rights reserved. -->
<font horiz-adv-x="1000">
<font-face font-family="Montserrat" units-per-em="1000" underline-position="-75" underline-thickness="50"/>
<missing-glyph horiz-adv-x="264"/>
<glyph unicode="L" horiz-adv-x="568" d="M86,0l0,699l156,0l0,-560l298,0l0,-139z"/>
<glyph unicode="R" horiz-adv-x="727" d="M653,467C653,355 609,283 520,250l177,-250l-192,0l-155,223l-108,0l0,-223l-156,0l0,699l265,0C460,699 537,681 584,644C630,607 653,548 653,467M359,565l-117,0l0,-207l114,0C409,358 446,367 465,384C484,401 494,429 494,467C494,504 484,530 464,544C444,558 409,565 359,565z"/>
<glyph unicode="a" horiz-adv-x="594" d="M528,0l-141,0l0,65C348,16 301,-8 244,-8C187,-8 139,9 100,42C61,75 42,119 42,174C42,229 62,270 102,297C142,324 197,338 266,338l112,0l0,3C378,398 348,427 287,427C261,427 234,422 205,412C176,401 151,388 131,373l-67,97C135,521 215,547 306,547C371,547 425,531 466,498C507,465 528,414 528,343M377,205l0,26l-94,0C223,231 193,212 193,175C193,156 200,141 215,131C229,120 249,115 276,115C303,115 326,123 347,140C367,156 377,178 377,205z"/>
<glyph unicode="b" horiz-adv-x="666" d="M221,71l0,-71l-150,0l0,742l150,0l0,-264C262,524 316,547 381,547C446,547 503,522 552,471C601,420 625,354 625,274C625,194 600,127 550,73C500,19 443,-8 380,-8C316,-8 263,18 221,71M219,269C219,225 231,189 256,162C280,134 309,120 344,120C379,120 409,134 435,162C461,189 474,225 474,268C474,311 461,348 436,377C411,406 380,421 345,421C310,421 280,407 256,378C231,349 219,312 219,269z"/>
<glyph unicode="e" horiz-adv-x="618" d="M537,78C476,21 405,-8 324,-8C242,-8 174,17 121,68C68,118 41,185 41,270C41,355 68,422 123,472C177,522 241,547 315,547C389,547 452,525 504,480C555,435 581,374 581,296l0,-80l-392,0C194,187 209,163 235,144C261,125 290,116 323,116C376,116 419,134 453,169M193,323l236,0C426,355 414,380 393,397C372,414 347,423 318,423C288,423 261,414 236,396C211,378 197,354 193,323z"/>
<glyph unicode="q" horiz-adv-x="666" d="M444,478l0,60l151,0l0,-732l-151,0l0,237C401,9 353,-8 298,-8C229,-8 169,18 118,70C67,121 41,188 41,269C41,350 66,416 116,469C166,521 222,547 283,547C344,547 398,524 444,478M192,269C192,225 205,189 231,162C257,134 287,120 322,120C357,120 386,134 410,162C434,189 446,225 446,269C446,312 434,349 410,378C386,407 356,421 321,421C286,421 255,407 230,378C205,349 192,312 192,269z"/>
<glyph unicode="s" horiz-adv-x="520" d="M269,-8C229,-8 187,-1 144,14C101,28 62,49 27,77l66,94C149,128 209,106 272,106C291,106 307,110 318,118C329,125 335,135 335,148C335,161 327,172 312,183C296,194 273,204 244,213C214,222 191,230 176,237C160,244 142,253 122,266C81,291 61,329 61,379C61,428 81,469 121,500C161,531 213,547 276,547C339,547 403,526 466,483l-56,-100C363,415 317,431 271,431C224,431 201,418 201,393C201,379 208,368 223,360C238,352 262,343 296,332C330,321 354,313 369,308C383,302 400,293 420,281C457,258 476,221 476,168C476,115 457,72 418,40C379,8 329,-8 269,-8z"/>
<glyph unicode="t" horiz-adv-x="440" d="M250,430l0,-241C250,168 255,152 266,141C277,129 289,123 304,123C332,123 356,136 375,161l56,-105C384,13 335,-8 284,-8C232,-8 188,9 153,43C117,77 99,123 99,182l0,248l-63,0l0,108l63,0l0,161l151,0l0,-161l130,0l0,-108z"/>
<glyph unicode="u" horiz-adv-x="640" d="M418,248l0,290l151,0l0,-538l-151,0l0,71C381,18 333,-8 274,-8C215,-8 165,11 125,48C85,85 65,139 65,212l0,326l151,0l0,-293C216,162 246,121 307,121C337,121 363,132 385,154C407,175 418,207 418,248z"/>
</font>
<!-- Lora is a trademark of Cyreal (www.cyreal.org, a@cyreal.org). -->
<!-- Copyright: Copyright 2014 Adobe System Incorporated. All rights reserved. -->
<font horiz-adv-x="2048">
<font-face font-family="Lora" units-per-em="2048" underline-position="-154" underline-thickness="102"/>
<missing-glyph horiz-adv-x="1083" d="M102,1024l848,0l0,-1024l-848,0M272,77l508,0l0,870l-508,0z"/>
<glyph unicode=" " horiz-adv-x="539"/>
<glyph unicode="W" horiz-adv-x="2038" d="M14,1434l497,0l0,-68C471,1364 440,1359 417,1351C394,1343 377,1330 368,1313C359,1296 355,1273 358,1246C360,1218 367,1184 378,1143C416,1018 464,873 522,706C579,539 613,441 623,413C633,384 643,354 653,322l4,0C664,345 671,369 679,395C687,421 695,446 703,471C710,496 733,567 771,685C809,803 837,890 856,946C874,1002 891,1055 908,1106C924,1156 959,1267 1013,1438l66,0C1146,1227 1188,1097 1205,1046C1222,995 1263,874 1328,682C1392,490 1434,362 1453,297l5,0C1599,725 1686,988 1718,1087C1749,1185 1770,1248 1781,1275C1791,1302 1803,1327 1816,1350l-164,-7l0,91l416,0l0,-68C2033,1362 2005,1356 1982,1348C1959,1339 1939,1324 1922,1303C1904,1282 1887,1252 1871,1214C1854,1176 1795,1005 1694,701C1593,397 1510,157 1445,-20l-61,0l-383,1095l-361,-1095l-59,0C326,742 193,1137 184,1165C174,1192 166,1217 159,1239C152,1261 146,1281 141,1299C136,1316 133,1333 130,1348l-116,-5z"/>
<glyph unicode="b" horiz-adv-x="1192" d="M155,1280C155,1301 155,1322 156,1342C156,1362 158,1386 161,1413l-145,-8l0,86C61,1491 98,1493 128,1496C157,1499 181,1503 200,1508C219,1513 233,1519 244,1526C255,1532 264,1539 272,1546l59,0l0,-611C369,973 414,1003 467,1025C519,1046 577,1057 642,1057C707,1057 768,1045 825,1021C881,996 930,962 972,917C1013,872 1046,817 1070,753C1093,688 1105,616 1105,536C1105,449 1090,370 1061,300C1031,230 992,170 943,121C894,72 837,34 773,7C708,-20 642,-33 573,-33C550,-33 525,-31 499,-27C473,-24 447,-17 420,-7C393,2 367,15 342,31C317,47 293,67 272,92l-49,-92l-72,0M579,956C534,956 489,946 445,925C401,904 363,875 331,840l0,-518C331,267 338,223 351,188C364,153 382,125 405,105C428,84 454,70 483,63C512,55 542,51 573,51C622,51 667,62 707,83C746,104 780,133 808,172C835,210 857,256 872,309C887,362 894,421 894,486C894,555 888,618 875,676C862,733 842,783 816,824C790,865 757,898 718,921C679,944 632,956 579,956z"/>
<glyph unicode="e" horiz-adv-x="1110" d="M604,977C524,977 458,954 406,907C354,860 320,783 303,678l522,0C825,714 821,750 813,786C805,821 792,853 775,882C757,910 734,933 706,951C678,968 644,977 604,977M1018,604l-721,-12C296,513 302,442 315,378C328,314 348,259 375,214C402,169 438,134 481,109C524,84 575,72 635,72C667,72 700,76 733,85C766,94 799,106 830,121C861,136 889,154 915,175C941,196 963,218 980,242l50,-41C1002,158 970,122 933,93C896,63 857,39 818,20C778,1 738,-12 698,-20C658,-29 621,-33 586,-33C515,-33 450,-20 389,5C328,30 275,67 230,114C185,161 150,218 125,285C99,352 86,427 86,510C86,582 98,651 123,717C148,782 183,840 228,891C273,942 328,982 391,1012C454,1042 525,1057 602,1057C659,1057 712,1048 763,1029C813,1010 857,982 895,945C933,908 963,861 985,804C1007,747 1018,680 1018,604z"/>
<glyph unicode="i" horiz-adv-x="575" d="M211,778C211,799 212,820 213,840C214,860 216,884 219,911l-145,-8l0,86C119,989 156,991 185,994C214,997 238,1001 257,1006C276,1011 290,1017 301,1024C311,1030 320,1037 328,1044l59,0l0,-827C387,190 387,166 386,145C385,124 383,101 379,78l129,6l0,-84l-418,0l0,61C121,61 145,67 162,80C178,92 190,109 197,131C204,153 209,179 210,210C211,241 211,274 211,311M406,1368C406,1351 403,1336 397,1321C390,1306 382,1294 372,1283C362,1272 350,1263 337,1257C324,1251 310,1248 295,1248C280,1248 266,1251 253,1257C240,1263 228,1272 218,1283C207,1294 199,1306 194,1321C188,1336 185,1351 185,1368C185,1385 188,1402 194,1417C200,1432 208,1445 219,1456C229,1467 241,1476 254,1483C267,1489 282,1492 297,1492C312,1492 327,1489 340,1483C353,1476 364,1467 374,1456C384,1445 392,1432 398,1417C403,1402 406,1385 406,1368z"/>
<glyph unicode="l" horiz-adv-x="557" d="M190,1280C190,1301 190,1322 191,1342C191,1362 193,1386 196,1413l-145,-8l0,86C96,1491 133,1493 163,1496C192,1499 216,1503 235,1508C254,1513 268,1519 279,1526C290,1532 299,1539 307,1546l59,0l2,-1329C368,190 367,166 366,145C365,124 362,101 358,78l129,6l0,-84l-418,0l0,61C100,61 124,67 141,80C157,92 169,109 176,131C183,153 188,179 189,210C190,241 190,274 190,311z"/>
<glyph unicode="m" horiz-adv-x="1831" d="M211,778C211,799 211,821 212,843C213,865 215,888 219,911l-145,-8l0,86C119,989 155,991 183,994C211,997 234,1001 251,1006C268,1011 281,1017 290,1024C299,1030 308,1037 316,1044l59,0C376,1031 378,1015 379,998C380,981 382,960 383,935C404,952 426,969 450,984C474,999 499,1012 525,1023C550,1034 577,1042 604,1048C631,1054 657,1057 684,1057C753,1057 811,1045 857,1020C903,995 939,961 965,919C988,938 1013,956 1040,973C1067,990 1096,1004 1125,1017C1154,1030 1184,1040 1215,1047C1246,1054 1276,1057 1305,1057C1364,1057 1416,1048 1460,1031C1503,1014 1539,987 1568,950C1596,913 1617,865 1630,807C1643,749 1648,680 1647,599l-2,-382C1645,190 1645,166 1644,145C1643,124 1641,101 1637,78l129,6l0,-84l-418,0l0,61C1379,61 1403,67 1420,80C1436,92 1448,109 1455,131C1462,153 1467,179 1468,210C1469,241 1469,274 1469,311l0,286C1469,715 1450,803 1413,862C1376,920 1316,949 1235,949C1192,949 1150,939 1108,920C1065,901 1028,877 997,848C1011,802 1018,752 1018,699l-4,-482C1014,190 1014,166 1013,145C1012,124 1010,101 1006,78l129,6l0,-84l-418,0l0,61C748,61 772,67 789,80C805,92 817,109 824,131C831,153 835,179 836,210C837,241 837,274 838,311l2,286C841,714 824,803 789,863C754,923 696,953 615,953C573,953 532,944 491,926C450,907 415,883 386,854C386,838 386,821 387,803C387,784 387,765 387,744l0,-527C387,190 387,166 386,145C385,124 383,101 379,78l129,6l0,-84l-418,0l0,61C121,61 145,67 162,80C178,92 190,109 197,131C204,153 209,179 210,210C211,241 211,274 211,311z"/>
<glyph unicode="o" horiz-adv-x="1198" d="M598,979C544,979 498,967 460,943C421,919 390,887 365,847C340,807 322,761 311,709C299,657 293,603 293,547C293,484 300,422 313,362C326,302 345,249 372,203C399,156 432,119 473,91C513,63 560,49 614,49C668,49 714,61 751,86C788,110 818,142 841,182C864,222 880,268 890,319C900,370 905,423 905,477C905,538 899,599 888,659C877,719 859,773 834,820C809,867 778,906 739,935C700,964 653,979 598,979M598,1057C670,1057 737,1044 800,1018C863,991 917,955 964,909C1010,862 1047,807 1074,744C1101,680 1114,611 1114,537C1114,458 1101,383 1075,314C1048,245 1012,184 966,133C919,82 865,41 802,12C739,-18 671,-33 598,-33C526,-33 459,-20 397,6C334,31 280,67 234,113C187,159 151,214 124,278C97,341 84,411 84,487C84,568 97,643 124,713C150,782 186,843 232,894C278,945 332,985 395,1014C458,1043 525,1057 598,1057z"/>
<glyph unicode="t" horiz-adv-x="793" d="M43,1024C79,1025 112,1035 141,1054C170,1073 196,1096 219,1125C241,1153 260,1184 275,1217C290,1250 302,1282 311,1311l70,0C381,1256 381,1205 381,1158C380,1111 380,1066 380,1024l345,0l0,-80l-345,-4C379,851 379,776 379,713C379,650 379,598 379,556C378,514 378,481 378,457C378,432 378,414 378,401C377,388 377,380 377,377C377,373 377,371 377,370C377,323 380,282 385,247C390,211 398,181 410,157C422,132 438,114 458,102C477,89 502,83 532,83C567,83 602,94 637,115C672,136 702,167 729,206l55,-45C754,116 724,80 695,55C665,29 637,10 610,-3C583,-16 559,-25 536,-28C513,-31 492,-33 475,-33C454,-33 433,-31 412,-28C390,-25 369,-18 348,-8C327,1 307,15 289,33C270,50 254,73 240,101C226,129 215,163 207,203C199,243 195,290 196,345l4,592l-157,-1z"/>
</font>
<g>
<g class="splash__logo__name">
<text transform="matrix(1 0 0 1 0.125 206.6846)" fill="#1E1D1D" font-family="'Montserrat'" font-size="16.6566">RequestLab</text>
</g>
<g class="splash__logo__tagline">
<text transform="matrix(1 0 0 1 0.125 232.8281)" fill="#1E1D1D" font-family="'Lora'" font-size="13.8575">Web et mobile</text>
</g>
</g>
<g>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="98.254" y2="133.299"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="98.254" y1="133.299" x2="62.363" y2="81.735"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="56.742" y2="116.734"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="56.742" y1="116.734" x2="101.477" y2="77.758"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="101.477" y1="77.758" x2="62.363" y2="81.735"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="79.25" y1="52.148" x2="101.477" y2="77.758"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="101.477" y1="77.758" x2="92.031" y2="23.347"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="104.613" y2="49.297"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="79.25" y2="52.148"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="61.146" y1="27.318" x2="79.25" y2="52.148"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="104.613" y1="49.297" x2="92.031" y2="23.347"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="92.031" y1="23.347" x2="63.369" y2="6.867"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.668" y1="2.265" x2="63.369" y2="6.867"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="61.146" y1="27.318" x2="63.369" y2="6.867"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="79.25" y1="52.148" x2="63.369" y2="6.867"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="61.146" y1="27.318" x2="92.031" y2="23.347"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.668" y1="2.265" x2="3.168" y2="51.989"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.27" y1="84.88" x2="3.12" y2="84.957"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.27" y1="84.88" x2="62.363" y2="81.735"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.27" y1="84.88" x2="3.239" y2="115.608"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.5" y1="27.279" x2="5.174" y2="12.676"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.582" y1="64.676" x2="5.174" y2="12.676"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="2.388" y1="148.402" x2="29.412" y2="112.147"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="3.239" y1="115.608" x2="29.412" y2="112.147"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="3.239" y1="115.608" x2="8.06" y2="159.598"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="3.12" y1="84.957" x2="56.742" y2="116.734"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="3.12" y1="84.957" x2="29.412" y2="112.147"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="3.168" y1="51.989" x2="29.5" y2="27.279"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="5.174" y1="12.676" x2="63.369" y2="6.867"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="5.174" y1="12.676" x2="61.146" y2="27.318"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="5.174" y1="12.676" x2="29.5" y2="27.279"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="5.174" y1="12.676" x2="29.582" y2="64.676"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.668" y1="2.265" x2="61.146" y2="27.318"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="63.369" y1="6.867" x2="29.5" y2="27.279"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="92.031" y1="23.347" x2="79.25" y2="52.148"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="92.031" y1="23.347" x2="29.5" y2="27.279"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="104.613" y1="49.297" x2="62.363" y2="81.735"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="104.613" y1="49.297" x2="79.25" y2="52.148"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="104.613" y1="49.297" x2="61.146" y2="27.318"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="29.412" y2="112.147"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="29.27" y2="84.88"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="62.363" y2="81.735"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="98.254" y1="133.299" x2="73.828" y2="144.648"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="98.254" y1="133.299" x2="56.742" y2="116.734"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="73.828" y1="144.648" x2="98.254" y2="133.299"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="56.742" y1="116.734" x2="98.254" y2="133.299"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="56.742" y1="116.734" x2="29.27" y2="84.88"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="56.742" y1="116.734" x2="62.363" y2="81.735"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="56.742" y1="116.734" x2="29.582" y2="64.676"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.412" y1="112.147" x2="2.388" y2="148.402"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.412" y1="112.147" x2="3.239" y2="115.608"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.412" y1="112.147" x2="29.27" y2="84.88"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.412" y1="112.147" x2="62.363" y2="81.735"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="79.25" y1="52.148" x2="92.031" y2="23.347"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="61.146" y1="27.318" x2="29.668" y2="2.265"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="61.146" y1="27.318" x2="104.613" y2="49.297"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="61.146" y1="27.318" x2="29.5" y2="27.279"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.5" y1="27.279" x2="3.168" y2="51.989"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.5" y1="27.279" x2="63.369" y2="6.867"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="63.369" y1="6.867" x2="104.613" y2="49.297"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="104.613" y1="49.297" x2="63.369" y2="6.867"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.582" y1="64.676" x2="29.668" y2="2.265"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="5.174" y1="12.676" x2="3.168" y2="51.989"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.582" y1="64.676" x2="3.168" y2="51.989"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.27" y1="84.88" x2="3.168" y2="51.989"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.582" y1="64.676" x2="3.239" y2="115.608"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.582" y1="64.676" x2="3.12" y2="84.957"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="8.06" y1="159.598" x2="30.203" y2="144.586"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.412" y1="112.147" x2="8.06" y2="159.598"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="30.203" y1="144.586" x2="3.239" y2="115.608"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="8.06" y1="159.598" x2="2.388" y2="148.402"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="30.203" y1="144.586" x2="2.388" y2="148.402"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="29.412" y1="112.147" x2="30.203" y2="144.586"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="56.742" y1="116.734" x2="97.197" y2="160.577"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="73.828" y2="144.648"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="81.826" y1="104.278" x2="97.197" y2="160.577"/>
<line fill="none" stroke="#1E1D1D" stroke-width="0.4" stroke-miterlimit="10" x1="98.254" y1="133.299" x2="97.197" y2="160.577"/>
</g>
<g>
<circle fill="#1E1E1E" cx="29.5" cy="27.279" r="2.264"/>
<circle fill="#1E1E1E" cx="29.582" cy="64.676" r="2.264"/>
<circle fill="#1E1E1E" cx="2.388" cy="148.402" r="2.264"/>
<circle fill="#1E1E1E" cx="3.239" cy="115.608" r="2.264"/>
<circle fill="#1E1E1E" cx="3.12" cy="84.957" r="2.264"/>
<circle fill="#1E1E1E" cx="3.168" cy="51.989" r="2.264"/>
<circle fill="#1E1E1E" cx="5.174" cy="12.676" r="2.264"/>
<circle fill="#1E1E1E" cx="29.668" cy="2.265" r="2.264"/>
<circle fill="#1E1E1E" cx="63.369" cy="6.867" r="2.264"/>
<circle fill="#1E1E1E" cx="92.031" cy="23.347" r="2.264"/>
<circle fill="#1E1E1E" cx="104.613" cy="49.297" r="2.264"/>
<circle fill="#1E1E1E" cx="101.477" cy="77.758" r="2.264"/>
<circle fill="#1E1E1E" cx="81.826" cy="104.278" r="2.264"/>
<circle fill="#1E1E1E" cx="97.197" cy="160.577" r="2.264"/>
<circle fill="#1E1E1E" cx="73.828" cy="144.648" r="2.264"/>
<circle fill="#1E1E1E" cx="29.411" cy="112.147" r="2.264"/>
<circle fill="#1E1E1E" cx="30.203" cy="144.586" r="2.264"/>
<circle fill="#1E1E1E" cx="8.06" cy="159.598" r="2.264"/>
<circle fill="#1E1E1E" cx="29.27" cy="84.88" r="2.264"/>
<circle fill="#1E1E1E" cx="56.742" cy="116.734" r="2.264"/>
<circle fill="#1E1E1E" cx="98.254" cy="133.299" r="2.264"/>
<circle fill="#1E1E1E" cx="62.363" cy="81.735" r="2.264"/>
<circle fill="#1E1E1E" cx="79.25" cy="52.148" r="2.264"/>
<circle fill="#1E1E1E" cx="61.146" cy="27.318" r="2.264"/>
</g>
</svg>
<a class="splash__next local-scroll" href="#competences" onClick="ga('send', 'event', 'button', 'click', 'splash-scroll');">
<i class="fa fa-angle-down"></i>
</a>
</header>
<main role="main">
<section class="section competences clear" id="competences">
<div class="container">
<div class="competences__intro row">
<div class="col-lg-12">
<h1>Développement web et mobile<small>à Bordeaux</small></h1>
<p><b>RequestLab</b> est une agence web <b>spécialisée dans le développement web et mobile</b>. Grâce aux <b>technologies les plus avancées</b>, à une <b>veille permanente</b> et une <b>forte culture du web</b>, nous créons pour vous des <b>applications et sites internet sur mesure et performants</b>.</p>
</div>
</div>
<div class="row">
<div class="competences__item col-sm-4">
<h3>Applications métiers</h3>
<p>Vous avez des besoins spécifiques à votre métier et vous souhaitez des outils adaptés : nous développons avec vous des applications métiers sur mesure qui répondent aux enjeux de votre entreprise.</p>
</div>
<div class="competences__item col-sm-4">
<h3>Applications mobiles</h3>
<p>Nous développons des applications mobile native pour iOs, Androïd et Windows Phone sous Swift, Objective-C, Java ou encore C#. Une solution idéale pour avoir rapidement son application sur tous les stores.</p>
</div>
<div class="competences__item col-sm-4">
<h3>Sites internet et e-commerce</h3>
<p>Vous souhaitez présenter votre entreprise, promouvoir ou vendre un produit : nous développons vos sites web et boutiques en ligne, à l’aide de la technologie la mieux adaptée à votre projet.</p>
</div>
</div>
<p class="competences__btn"><a class="btn local-scroll" href="#projet" onClick="ga('send', 'event', 'button', 'click', 'comeptences-projet');">J'ai un projet</a></p>
</div>
</section>
<section class="section clients" id="clients">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>Ils nous font confiance<small>Et nous les en remercions</small></h1>
<p>Nous travaillons avec <b>toutes formes d’organisations publiques ou privées</b> et sommes en mesure d’apporter des réponses adaptées aux <b>grands comptes</b> comme aux <b>petites entreprises locales</b>.</p>
<p>Nous nous attachons à travailler avec le même soin à la <b>satisfaction de chaque client</b> : France Télévisions, le Groupe Sud Ouest, La Tribune, Radio France, Full Metal Jacquet, Adema...</p>
<ul>
<li onClick="ga('send', 'event', 'logo', 'click', 'so');">
<img src="images/clients/logo-gso.png" alt="Groupe Sud-Oouest">
</li>
<li onClick="ga('send', 'event', 'logo', 'click', 'ftv');">
<img src="images/clients/logo-ftv.png" alt="France Télévisions">
</li>
<li onClick="ga('send', 'event', 'logo', 'click', 'fmj');">
<img src="images/clients/logo-fmj.png" alt="Full Métal Jacquet">
</li>
<li onClick="ga('send', 'event', 'logo', 'click', 'adema');">
<img src="images/clients/logo-adema.png" alt="ADEMA">
</li>
</ul>
<ul>
<li onClick="ga('send', 'event', 'logo', 'click', 'latribune');">
<img src="images/clients/logo-latribune.png" alt="La Tribune">
</li>
<li onClick="ga('send', 'event', 'logo', 'click', 'rf');">
<img src="images/clients/logo-rf.png" alt="Radio France">
</li>
<li onClick="ga('send', 'event', 'logo', 'click', 'oxygen');">
<img src="images/clients/logo-oxygen.png" alt="Oxygen">
</li>
<li onClick="ga('send', 'event', 'logo', 'click', 'tdv');">
<img src="images/clients/logo-tdv.png" alt="Terre de Vins">
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Contact : coordonnées -->
<section class="section section--left coordonnees" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h1>Contactez-nous<small>Par tous les moyens</small></h1>
<p>Envoyez un email à <b onClick="ga('send', 'event', 'email', 'click', 'hello');">hello@requestlab.fr</b></p>
<p><b onClick="ga('send', 'event', 'team', 'click', 'yann');">Yann Lecommandoux</b> <small>Président</small> <br> yann@requestlab.fr</p>
<p><b onClick="ga('send', 'event', 'team', 'click', 'loic');">Loïc Griffié</b> <small>Directeur Général</small> <br> loic@requestlab.fr</p>
<a class="btn local-scroll" href="#projet" onClick="ga('send', 'event', 'button', 'click', 'coordonnes-projet');">J'ai un projet</a>
</div>
</div>
</div>
</section>
<!-- Contact : formulaire de contact -->
<section class="section projet projet--minimal" id="projet">
<button class="projet__unfocus"><i class="fa fa-times"></i></button>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>Parlons un peu de votre projet <small>Ou de tout autre chose</small></h1>
<div class="projet__container">
<div class="projet__container__form">
<form class="projet__form" id="form" action="" method="" autocomplete="off" novalidate role="form">
<ol class="projet__questions row">
<li class="projet__question col-md-6 projet__question--current">
<label for="q_nom">Quel est votre nom ?</label>
<input class="projet__question__field" id="q_nom" name="q_nom" type="text" required onFocus="ga('send', 'event', 'field', 'focus', 'email');">
</li>
<li class="projet__question col-md-6">
<label for="q_entreprise">Quel est votre entreprise ?</label>
<input class="projet__question__field" id="q_entreprise" name="q_entreprise" type="text" onFocus="ga('send', 'event', 'field', 'focus', 'entreprise');">
</li>
<li class="projet__question col-md-6">
<label for="q_email">Quel est votre email ?</label>
<input class="projet__question__field" id="q_email" name="q_email" type="email" required onFocus="ga('send', 'event', 'field', 'focus', 'email');">
</li>
<li class="projet__question col-md-6">
<label for="q_tel">Quel est votre numéro de téléphone ?</label>
<input class="projet__question__field" id="q_tel" name="q_tel" type="tel" onFocus="ga('send', 'event', 'field', 'focus', 'tel');">
</li>
<li class="projet__question col-sm-12">
<label for="q_message">Quel est votre projet ou message ?</label>
<textarea class="projet__question__field" name="q_message" id="q_message" required onFocus="ga('send', 'event', 'field', 'focus', 'msg');"></textarea>
</li>
<li class="projet__submit col-sm-12">
<button class="btn" type="submit" onClick="ga('send', 'event', 'button', 'click', 'form-send');">Envoyer</button>
</li>
</ol>
</form>
<div class="projet__controls row">
<div class="col-sm-12">
<div class="projet__controls__progressbar"></div>
<div class="row">
<div class="projet__controls__btns col-sm-6 col-sm-push-6">
<button class="projet__controls__prev" onClick="ga('send', 'event', 'button', 'click', 'form-previous');">Précédent</button>
<span class="projet__controls__number__current"></span> / <span class="projet__controls__number__total"></span>
<button class="projet__controls__next" onClick="ga('send', 'event', 'button', 'click', 'form-next');">Suivant</button>
</div>
<div class="col-sm-6 col-sm-pull-6">
<p class="projet__controls__error"></p>
</div>
</div>
</div>
</div>
</div>
<p class="projet__finish">Merci ! Nous vous contacterons rapidement.<br><button class="projet__recommencer btn" onClick="ga('send', 'event', 'button', 'click', 'form-restart');">Recommencer</button></p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact : carte + adresse bureaux -->
<section class="section section--right bureaux" id="bureaux">
<div class="bureaux__marker bureaux__marker--static hidden-xs"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-push-4">
<h1>Venez nous voir<small>Dans le centre de Bordeaux</small></h1>
<p>
Nos bureaux sont au <br>
<b>22 rue de Huguerie - 33000 Bordeaux</b>
</p>
<p><button class="bureaux__open btn" onClick="ga('send', 'event', 'button', 'click', 'venir');">Venir</button></p>
</div>
</div>
</div>
<div class="bureaux__carte">
<div class="bureaux__carte__content">
<button class="bureaux__carte__close"><i class="fa fa-times"></i></button>
<div id="bureaux__carte__map"></div>
</div>
</div>
</section>
<!-- Infos : logo + réseaux sociaux -->
<section class="section misc" id="misc">
<div class="container">
<div class="row">
<div class="misc__logo col-sm-6 hidden-xs">
<img src="images/requestlab-logo-text.png" alt="RequestLab agence web à Bordeaux">
</div>
<div class="misc__partage col-sm-6">
<a href="https://twitter.com/requestlab" onClick="ga('send', 'event', 'button', 'click', 'twitter');">
<i class="fa fa-twitter"></i>
</a>
<a href="https://facebook.com/requestlab" onClick="ga('send', 'event', 'button', 'click', 'facebook');">
<i class="fa fa-facebook"></i>
</a>
<a href="https://google.com/+RequestlabFr" rel="publisher" onClick="ga('send', 'event', 'button', 'click', 'google-plus');">
<i class="fa fa-google-plus"></i>
</a>
</div>
</div>
</div>
</section>
</main>
<footer class="pied" id="pied" role="contentinfo">
<div class="container">
<div class="row">
<div class="pied__dev col-md-4 col-md-push-8 col-lg-6 col-lg-push-6">
<p>Développé avec <i class="fa fa-heart"></i> à Bordeaux, France</p>
</div>
<div class="pied__legal col-md-8 col-md-pull-4 col-lg-6 col-lg-pull-6">
<p>2020 © RequestLab SAS - Tous droits réservés - <button class="open--modal" data-target="modal--legal" onClick="ga('send', 'event', 'button', 'click', 'mentions-legales');">Mentions légales</button><!-- - <button class="open--modal" data-target="modal--cgv" onClick="ga('send', 'event', 'button', 'click', 'cgv');">CGV</button> --></p>
</div>
</div>
</div>
<div class="modal" id="modal--legal">
<div class="modal__content">
<button class="modal__close"><i class="fa fa-times"></i></button>
<h4 class="modal__title">Mentions légales</h4>
<p>RequestLab est une société par actions simplifiée au capital social de cinq-mille euros immatriculée 801 373 689 au Greffe du Tribunal de Commerce de Bordeaux.<!-- et dont le siège social se situe au 3, Place Georges de Porto-Riche 33000 Bordeaux.--></p>
<p>Le responsable de la publication est <a href="mailto:hello@requestlab.fr">Yann Lecommandoux</a>, Président de la société RequestLab.</p>
<p>Le présent site internet requestlab.fr est hébergé par <a href="https://www.lpl-hosting.com/" onClick="ga('send', 'event', 'button', 'click', 'lpl-hosting');">LPL HOSTING</a>, Société à Responsabilité Limité au capital de 1.000€ ayant son siège social au 9 rue de Condé à Bordeaux (33000) FRANCE, immatriculée sous le numéro 810 089 508 RCS BORDEAUX.</p>
</div>
</div>
</footer>
</div>
<script src="/scripts/main.js"></script>
<!-- Google 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-48646012-1');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
</body>
</html>