-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
735 lines (629 loc) · 32.9 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
726
727
728
729
730
731
732
733
734
735
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<title>Summer Course 2016</title>
<!--REQUIRED STYLE SHEETS-->
<!-- BOOTSTRAP CORE STYLE CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet" />
<!-- FONTAWESOME STYLE CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" />
<!-- VEGAS STYLE CSS -->
<link href="assets/scripts/vegas/jquery.vegas.min.css" rel="stylesheet" />
<!-- CUSTOM STYLE CSS -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- GOOGLE FONT -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="bestcon.ico" type="image/x-icon">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--Header section -->
<div class="container" id="home">
<div class="row text-center">
<div class="col-md-12" >
</br> </br> </br>
<img class="img-responsive" src= "head.png" width="95%" height="95%">
<h3 class="head-last"> Summer Course 2016 </h3>
</br> </br> </br></br></br>
</div>
</div>
</div>
</div>
<!--End Header section -->
<!-- Navigation -->
<nav class="navbar-inverse" role="navigation">
<div class="container-fluid" style="margin-left:2%; margin-right: 2%">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><img src="assets/img/rsz_1best_aveiro_logo.png" style="float:left" height="50px"> </a>
</div>
<!-- Collect the nav links for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a href="#about">COURSE</a>
</li>
<li><a href="#about-best">BEST AVEIRO</a>
</li>
<li><a href="#news">NEWS</a>
</li>
<li><a href="#about-team">PARTICIPANTS</a>
</li>
<li><a href="#schedule">SCHEDULE</a>
</li>
<li><a href="#survival-guide">SURVIVAL GUIDE</a>
</li>
<li><a href="#syllabus">SYLLABUS</a>
</li>
<li> <a href="#accomodation">ACCOMMODATION</a>
</li>
<li> <a href="#partners">PARTNERS</a>
</li>
<li> <a href="#contact-sec">CONTACTS</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!--End Navigation -->
<!--About Section-->
<section class="for-full-back color-light " id="about" >
<div class="container" >
<div class="row text-center" >
<div class="col-md-8 col-md-offset-2 ">
<h1> The engine beneath your skin </h1> <hr class="style1">
</div>
</div>
<div class="row text-center g-pad-bottom" >
<div class="col-md-12">
<center> <img src= "gif4.gif" width="50%" height="50%"> </center>
</br>
<p>
Are you in love with Bioissues?
Are you interested in Biomechanics and Medical Devices?
Do you want to learn more about how to improve people’s health and quality of life?
Well, Aveiro challenges you to apply our course. We are planning to give you a basic overview of biomechanics and medical devices in general as well as more directed and specific lectures on several bio themes.
You will be able to discover the high-tech equipment used in Biomechanics Research, available at our University, through practical classes and laboratorial visits assisted by professors and researchers of this field of studies.
Despite all of the irresistible academic activities we have planned, you will also have the opportunity to visit the beautiful city of Aveiro and the surrounding areas, such as Praia da Barra and its charming beachside. We know that you are already tempted to apply but wait - we have more for you!
You can also enjoy yourself at great parties, get to know amazing people from every corner of Europe and have lots of fun. Combine all this and you get the recipe for the greatest 12 days of your summer! Are you ready to accept this challenge?
</p>
<center><iframe width="600" height="400" src="http://www.youtube.com/embed/zSKqrtBockE?autoplay=1"> </iframe></center>
</div>
</div>
</div>
</section>
<!--End About Section-->
<!--BEST Averio Section-->
<section class="for-full-back color-dark" id="about-best" >
<div class="container" >
<div class="row text-center" >
<div class="col-md-8 col-md-offset-2 ">
<h1 style="color:white;">What is BEST Aveiro?</h1> <hr class="style1">
</div>
</div>
<center> <img src= "best.jpg" width="70%" height="70%"> </center>
<div class="row text-center g-pad-bottom" >
<div class="col-md-12">
<h2 style="color:white;"> BEST, challenging ourselves everyday </h2>
</br>
<p style="color:white;">
BEST Aveiro is one of the 96 local groups of the Board of European Students of Technology (BEST), one of the most active organisations in the University of Aveiro, a beautiful town in the Portuguese Coast. The main goal of BEST is to bring closer our three stakeholders: students, universities and companies. Therefore, BEST provides three main services: complementary education, career support and educational involvement. The organisation aims to develop students and their working capacities on an international level, creating opportunities and empowering diversity. To fulfill this purpose, the 50 members of BEST Aveiro strive to organise about 20 events per year, including Engineering Competitions, Seasonal Courses and Soft-Skills Training Sessions, reaching more than 500 students.
</p>
</div>
</div>
</div>
</section>
<!--End BEST Aveiro Section-->
<!--News Section-->
<section class="for-full-back color-light" id="news" >
<div class="container" >
<div class="row text-center" >
<div class="col-md-8 col-md-offset-2 ">
<h1 >News</h1> <hr class="style1">
</div>
</div>
<div class="row" >
<div class="col-md-4">
<div style="background-color:white" class="thumbnail">
<a href="new1.html"><img class="img-responsive" src="logos/beesweet.png"></a>
<h4><a href="new1.html">Beesweet suports Summer Course</a></h4>
<small>August 21, 2016 at 00:51 AM </small>
<p>Beesweet is one of BEST Aveiro’ partners for the summer course “The engine beneath your skin!” with the subject biomechanics and medical devices.</p>
</div>
<div style="background-color:white" class="thumbnail">
<a href="new4.html"><img class="img-responsive" src="logos/shoyce.jpg"></a>
<h4><a href="new4.html">Shoyce suports Summer Course</a></h4>
<small>August 21, 2016 at 00:51 AM </small>
<p>Shoyce, the only soy drinks Portuguese brand with 100% national production will be a partner of the Association BEST Aveiro in the summer course "The engine beneath your skin!" with the theme biomechanics and medical devices.</p>
</div>
</div>
<div class="col-md-4">
<div style="background-color:white" class="thumbnail">
<a href="new2.html"><img class="img-responsive" src="logos/hotelmoliceiro.jpg"></a>
<h4><a href="new2.html">Hotel Moliceiro suports Summer Course</a></h4>
<small>August 21, 2016 at 00:51 AM </small>
<p>Hotel Moliceiro is one of BEST Aveiro’ partners for the upcoming summer course “The engine beneath your skin!” with the theme biomechanics and medical devices.</p>
</div>
<div style="background-color:white" class="thumbnail">
<a href="new5.html"><img class="img-responsive" src="logos/jusante.jpg"></a>
<h4><a href="new5.html">Jusanté suports Summer Course</a></h4>
<small>August 22, 2016 at 4:34 PM </small>
<p>Jusanté, a non-alcoholic beverage brand, that provides its customers with the quality of fresh and squeezed fruit without having to dispense large amounts of money.</p>
</div>
</div>
<div class="col-md-4">
<div style="background-color:white" class="thumbnail">
<a href="new3.html"><img class="img-responsive" src="logos/plux_logo.jpg"></a>
<h4><a href="new3.html">workshop: BITalino Welcome to the biosignals (r)evolution</a></h4>
<small>August 21, 2016 at 00:51 AM </small>
<p>In the morning of September 1st, a workshop will take place under the theme BITalino: Welcome to the biosignals (r)evolution.</p>
</div>
<div style="background-color:white" class="thumbnail">
<a href="new6.html"><img class="img-responsive" src="logos/diatosta.jpg"></a>
<h4><a href="new6.html">Diatosta suports Summer Course</a></h4>
<small>August 25, 2016 at 05:00 PM </small>
<p>Diatosta will be one of the partner companies in the summer course "The engine beneath your skin!" with the theme biomechanics and medical devices, organized by the association BEST Aveiro.
</p>
</div>
</div>
</div>
</div>
</section>
<!--End News Section-->
<!-- About Team Section -->
<section class="for-full-back color-dark" id="about-team" >
<div class="container" >
<div class="col-md-8 col-md-offset-2 ">
<div class="row text-center" >
<h1 style="color:white;">Our participants</h1> <hr class="style1">
<h4>
</h4>
</div>
</div>
<div class="row text-center" >
<div class="col-md-12 g-pad-bottom" >
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="team-member">
<img src="assets/img/AlejandroSans_2.jpg" alt="AlejandroSans_2" width="255px" height="255px">
<h3> <strong> Alejandro Sans Monguiló </strong>
<br /><br />
Spain</h3>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="team-member">
<img src="assets/img/chiara.jpg" alt="chiara" width="255px" height="255px">
<h3> <strong> Chiara Alberti </strong>
<br /><br />
Italy</h3>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="team-member">
<img src="assets/img/ciara.png" alt="ciara" width="255px" height="255px">
<h3> <strong>Ciara Burns</strong>
<br /><br />
Austria</h3>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="team-member">
<img src="assets/img/denis.jpg" alt="denis" width="255px" height="255px">
<h3> <strong>Denis Filiptsev</strong>
<br /><br />
Russia</h3>
</div>
</div>
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/elena.jpg" alt="elena" width="255px" height="255px">
<h3> <strong> Elena Krikigianni </strong>
<br /><br />
Greece</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/gonzalo.jpg" alt="gonzalo" width="255px" height="255px">
<h3> <strong> Gonzalo Parrilla </strong>
<br /><br />
Spain</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/ilia.jpg" alt="ilia" width="255px" height="255px">
<h3> <strong> Ilia Yakovlev </strong>
<br /><br />
Russia</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/jakub.png" alt="jakub" width="255px" height="255px">
<h3> <strong> Jakub (Kuba) Chamrad </strong>
<br /><br />
Czech Republic</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/klaudia.jpg" alt="klaudia" width="255px" height="255px">
<h3> <strong> Klaudia Jurczak </strong>
<br /><br />
Poland</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/nina.jpeg" alt="nina" width="255px" height="255px">
<h3> <strong> Nina Družetić </strong>
<br /><br />
Croatia</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/Konstantinos.jpeg" alt="Konstantinos" width="255px" height="255px">
<h3> <strong> Konstantinos Theodorou </strong>
<br /><br />
Greece</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/maria.jpg" alt="maria" width="255px" height="255px">
<h3> <strong> Maria Gherghina </strong>
<br /><br />
Romania</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/martina.jpg" alt="Martina" width="255px" height="255px">
<h3> <strong> Martina Bernini </strong>
<br /><br />
Italy</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/mladen.jpg" alt="mladen" width="255px" height="255px">
<h3> <strong> Mladen Rakic </strong>
<br /><br />
Serbia</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/Muhammad.jpg" alt="Muhammad" width="255px" height="255px">
<h3> <strong> Muhammad Uzair Khalid </strong>
<br /><br />
Finland</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/nicolas.jpg" alt="nicolas" width="255px" height="255px">
<h3> <strong> Nicolas Valbuena </strong>
<br /><br />
Germany</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/pedro.jpg" alt="pedro" width="255px" height="255px">
<h3> <strong> Pedro Pernia Arvelo </strong>
<br /><br />
Canada</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/raquel.jpg" alt="raquel" width="255px" height="255px">
<h3> <strong> Raquel Pérez </strong>
<br /><br />
Spain</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/richard.jpg" alt="richard" width="255px" height="255px">
<h3> <strong> Richárd Zsámboki </strong>
<br /><br />
Hungary</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/sofia.bmp" alt="sofia" width="255px" height="255px">
<h3> <strong> Sofiya Ganeva </strong>
<br /><br />
Bulgaria</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/stijn.jpg" alt="stijn" width="255px" height="255px">
<h3> <strong> Stijn Proesmans </strong>
<br /><br />
Belgium</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/wei.jpg" alt="wei" width="255px" height="255px" >
<h3> <strong> Wei Zhao </strong>
<br /><br />
Austria</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/yana.jpg" alt="yana" width="255px" height="255px" >
<h3> <strong> Yana Povar </strong>
<br /><br />
Ukraine</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/joaojanuario.jpg" alt="yana" width="255px" height="255px" >
<h3> <strong> João Januário </strong>
<br /><br />
Portugal</h3>
</div>
</div>
<!-- ./crew images -->
<!-- crew images -->
<div class="col-md-3 col-sm-3 col-xs-6 crew">
<div class="team-member">
<img src="assets/img/franciscabraganca.jpg" alt="yana" width="255px" height="255px" >
<h3> <strong> Francisca Bragança </strong>
<br /><br />
Portugal</h3>
</div>
</div>
<!-- ./crew images -->
</div>
</div>
<div class="row text-center" >
<div class="col-md-12">
</div>
</div>
</div>
</section>
<!--End About Team Section -->
<!-- Services Section -->
<section class="for-full-back color-light " id="schedule" >
<div class="container" >
<div class="row text-center" >
<div class="">
<h1 > Take a look at your schedule! </h1> <hr class="style2">
<left> <img src= "schedule4.png" width="95%" height="95%"> </left>
</br> </br>
</div>
</section>
<!--End Services Section -->
<!--survival guide Section-->
<section class="for-full-back color-dark" id="survival-guide" >
<div class="container" >
<div class="col-md-8 col-md-offset-2 ">
<div class="row text-center" >
<h1 style="color:white;"> Survival Guide</h1> <hr class="style1">
<embed src="SG_SC16.pdf" width="800" height="500"
type='application/pdf'>
</div>
</br> </br>
</div>
</section>
<!--End About Section-->
<!--syllabus Section-->
<section class="for-full-back color-light" id="syllabus" >
<div class="container" >
<div class="col-md-8 col-md-offset-2 ">
<div class="row text-center" >
<h1 > Syllabus</h1> <hr class="style1">
<embed src="Syllabus.pdf" width="800" height="500"
type='application/pdf'>
</div>
</br> </br>
</div>
</section>
<!--End syllabus Section-->
<!--accomodation Section-->
<section class="for-full-back color-dark" id="accomodation" >
<div class="container" >
<div class="row text-center" >
<div class="col-md-8 col-md-offset-2 ">
<h1 style="color:white;">Accommodation</h1> <hr class="style1">
</div>
</div>
<center> <img src= "residencia.jpg" width="45%" height="45%"> </center>
</br>
<div class="row text-center g-pad-bottom" >
<div class="col-md-12">
<p style="color:white;">
Each one of our participants will be hosted at the University of Aveiro residences. Every bedroom is furnished with one bed, one wardrobe, one desk and one washbasin. The bathroom will be shared by two people. The internet connection will be 24 hours available through the University's WiFi network.
</p>
</div>
</div>
</div>
</section>
<!--End About Section-->
<!--partners Section-->
<section class="for-full-back color-light" id="partners" >
<div class="container" >
<div class="row text-center" >
<div class="col-md-8 col-md-offset-2 ">
<h1 >Partners</h1> <hr class="style1">
<h4>
<strong>
</strong>
</h4>
</div>
</div>
<center> <a href="http://www.ua.pt/"><img src="logoua.png" width="25%" height="20%" style="margin-top:0.6%; padding:40px" href="http://www.ua.pt/"></a>
<a href="http://www.ipdj.pt/"> <img src="ipdj.png" width="20%" height="15%" style="max-width:35%; padding:40px" ></a>
<a href="https://www.indasa-abrasives.com/global/en/"><img src="indasa.jpg" width="20%" height="29%" style="max-width:35%; padding:40px" ></a>
<a href="https://www.kopystation.pt/"> <img src="kopy2.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.ordemengenheiros.pt/pt/"><img src="ordem.jpg" width="20%" height="15%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.print4fun3d.com/"> <img src="print4fun3d.jpg" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.asformacao.com/"> <img src="logos/asformacao.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.spb.pt/"> <img src="logos/spb.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.plux.info/index.php/en/"> <img src="logos/plux.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://beesweet.pt/"> <img src="logos/beesweet.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://diatosta.pt/"> <img src="logos/diatosta.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://shoyce.pt/"> <img src="logos/shoyce.jpg" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="#"> <img src="logos/jusante.jpg" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.asaloinha.pt/English/main.html"> <img src="logos/saloinha.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.aveiroemotions.com/"> <img src="logos/aveiroemotions.jpg" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.hotelmoliceiro.pt/hotel-moliceiro"> <img src="logos/hotelmoliceiro.jpg" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="https://www.pingodoce.pt/"> <img src="logos/Pingo_Doce.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
<a href="http://www.irmaosmonteiro.pt/"> <img src="logos/monteiro.png" width="20%" height="20%" style="max-width:35%; padding:40px" ></a>
</center>
</div>
</section>
<!--End About Section-->
<!-- Contact Section -->
<section class="for-full-back color-dark " id="contact-sec" >
<div class="container" >
<div class="row text-center" >
<div class="col-md-8 col-md-offset-2 ">
<h1 style="color:white;">Questions? Ask Us Now.</h1> <hr class="style1">
<h4>
<strong>
</strong>
</h4>
</div>
</div>
<div class="row" >
<div class="col-md-5 contact-cls" >
<h3 style="color:white;">Our Contact Details</h3>
<div >
<span style="color:white;"><i class="fa fa-home"> </i> Address: Campus Universitário de Santiago, Universidade de Aveiro 3810-193, Portugal </span>
<br />
<span style="color:white;"><i class="fa fa-phone"> </i> Phone: +351 963 004 670 </span>
<br />
<span style="color:white;"><i class="fa fa-envelope-o"> </i> E-Mail: [email protected] </span>
<br />
</div>
<br />
<div id="social-icon">
<a href="https://www.facebook.com/BESTaveiro"><i class="fa fa-facebook fa-2x" style="color:white;"></i></a>
<a href="https://twitter.com/BESTaveiro"><i class="fa fa-twitter fa-2x" style="color:white;"></i></a>
<a href="https://www.linkedin.com/company/best-aveiro"><i class="fa fa-linkedin fa-2x" style="color:white;"></i></a>
<a href="https://plus.google.com/100971072008213825789/posts"><i class="fa fa-google-plus fa-2x" style="color:white;"></i></a>
<a href="https://www.instagram.com/best.aveiro/"><i class="fa fa-instagram fa-2x" style="color:white;"></i></a>
<a href="http://bestaveiro.web.ua.pt/"> <img src= "logo.png" width="10%" height="10%" style="color:white; padding-bottom:3%"> </a>
</div>
</div>
<div class="col-md-7">
<h2 style="color:white;"> Send us an e-mail</h2>
</br> </br>
<form action="MAILTO:[email protected]" method="post" enctype="text/plain">
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input type="text" class="form-control" required="required" placeholder="Name">
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input type="text" class="form-control" required="required" placeholder="Email address">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-group">
<textarea name="message" id="message" required="required" class="form-control" rows="3" placeholder="Message"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn btn-default">Send</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!--End Contact Section -->
<!--footer Section -->
<div class="for-full-back " id="footer" >
</div>
<!--End footer Section -->
<!-- JAVASCRIPT FILES PLACED AT THE BOTTOM TO REDUCE THE LOADING TIME -->
<!-- CORE JQUERY -->
<script src="assets/plugins/jquery-1.10.2.js"></script>
<!-- BOOTSTRAP CORE SCRIPT -->
<script src="assets/plugins/bootstrap.js"></script>
<!-- VEGAS SLIDESHOW SCRIPTS -->
<script src="assets/plugins/vegas/jquery.vegas.min.js"></script>
<!-- CUSTOM SCRIPTS -->
<script src="assets/js/custom.js"></script>
</body>
</html>