This repository was archived by the owner on Jul 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsponsor.html
More file actions
930 lines (884 loc) · 51.9 KB
/
sponsor.html
File metadata and controls
930 lines (884 loc) · 51.9 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
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>
SINFO Sponsorship
</title>
<meta name="description" content="SINFO is an annual not-for-profit event organised exclusively by college students who strive for a more interesting and ground-breaking event each edition.">
<meta name="author" content="SINFO">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="icon" href="img/favicon.ico" type="image/x-icon" />
<meta property="og:title" content="SINFO" />
<meta property="og:url" content="http://sinfo.github.io/" />
<meta property="og:image" content="http://sinfo.github.io/img/sinfocheio.jpg" />
<meta property="og:description" content="SINFO is an annual not-for-profit event organised exclusively by college students who strive for a more interesting and ground-breaking event each edition." />
<!-- load inks css -->
<link rel="stylesheet" type="text/css" href="css/vendor/ink/ink-flex.min.css">
<link rel="stylesheet" type="text/css" href="css/vendor/ink/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- load inks css for IE8 -->
<!--[if lt IE 9 ]>
<link rel="stylesheet" href="css/vendor/ink/ink-ie.min.css" type="text/css" media="screen" title="no title" charset="utf-8">
<![endif]-->
<!-- test browser flexbox support and load legacy grid if unsupported -->
<script type="text/javascript" src="js/vendor/
ink/modernizr.js"></script>
<script type="text/javascript">
Modernizr.load({
test: Modernizr.flexbox,
nope : 'css/vendor/ink/ink-legacy.min.css'
});
</script>
<!-- load inks javascript files -->
<script type="text/javascript" src="js/vendor/ink/holder.js"></script>
<script type="text/javascript" src="js/vendor/ink/ink-all.min.js"></script>
<script type="text/javascript" src="js/vendor/ink/autoload.js"></script>
<!-- my stuff -->
<link rel="stylesheet" type="text/css" href="css/sponsors/styles.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/sponsors/jquery.scrollTo.min.js"></script>
<script type="text/javascript" src="js/sponsors/jquery.localScroll.min.js"></script>
<script type="text/javascript" src="js/sponsors/code.js"></script>
<script type="text/javascript" src="js/sponsors/sponsorEffect.js"></script>
<script type="text/javascript" src="js/sponsors/formSubmit.js"></script>
<!--<script src="http://malsup.github.com/jquery.form.js"></script> -->
</head>
<body>
<div id="topbar">
<nav class="ink-navigation ink-grid hide-small hide-tiny ie7">
<ul class="menu horizontal flat black shadowed">
<li>
<a class="logoPlaceholder" href="#" title="SINFO"> <img src="img/logo.png"></a>
</li>
<li><a href="#description">Description</a></li>
<li><a href="#reasons">Partnership Reasons</a></li>
<li><a href="#curricula">Curricula</a></li>
<li><a href="#conditions">Partnership Details</a></li>
<li><a href="#startups">Startups</a></li>
<li><a href="#deadlines">Deadlines</a></li>
<li><a href="#more-information">More information</a></li>
</ul>
</nav>
<nav class="ink-navigation ink-grid hide-all show-small">
<ul class="menu vertical flat black">
<li class="title">
<a class="logoPlaceholder push-left" href="#" title="SINFO"><img src="img/logotext.png"></a>
<button class="toggle" data-target="#topbar_menu"><span class="fa fa-reorder"></span></button>
</li>
</ul>
<ul class="menu vertical flat black hide-all" id="topbar_menu">
<li><a href="#description">Description</a></li>
<li><a href="#reasons">Partnership Reasons</a></li>
<li><a href="#curricula">Curricula</a></li>
<li><a href="#conditions">Partnership Details</a></li>
<li><a href="#startups">Startups</a></li>
<li><a href="#deadlines">Deadlines</a></li>
<li><a href="#more-information">More information</a></li>
</ul>
</nav>
</div>
<div class="sponsor-header" id="sponsor-header">
<div class="opacidade">
<h1>
<a href="#" title="">Become a Partner!</a>
</h1>
<div class="description2">
See how you can help us create the biggest SINFO ever!
</div>
</div>
</div>
<br><br>
<div class="ink-grid">
<div id="description" class="column-group gutters">
<div class="all-100">
<h2>Description</h2>
<p>Last year we continued with the improvement of our tent. Once again, all the different spaces and sections were joined in a huge tent in the middle of the campus and we felt like the disposition we arranged was better than the one in the previous edition. We had a record breaking attendance of participants - achievement we hope to repeat next year, from the 26th of February to the 2nd of March 2018. We invite you to visit our homepage presenting the several elements of our event. You can also visit the <a href="http://www.sinfo.org/" target="_blank" >SINFO website</a>, the 2017 edition, or see the video of last edition bellow.<p>
<center>
<iframe width="640" height="360" src="https://www.youtube.com/embed/_EW6y0F3x-g?rel=0&controls=0" frameborder="0" allowfullscreen></iframe>
</center>
</div>
</div>
<div id="reasons" class="column-group gutters">
<div class="all-100">
<h2>Reasons to become a Partner</h2>
<ul>
<li>Do you want to recruit the best of the best from Portuguese universities? Are the more than 5000 participants, interested in Full Time, Part-time and internships jobs, music to your ears?</li>
<li>Do you want to promote, advertise and make your company known to future potential employees?</li>
<li>Do your want to network and form interesting business partnerships and connections?</li>
</ul>
<p class="reasons"><b>If so, you want SINFO. Become a sponsor!<br>Check down below and be quick to book your presence.</b></p>
</div>
</div>
<div id="curricula" class="column-group gutters">
<div class="all-100">
<h2>Curricula</h2>
<p>Every sponsor that acquires a sponsoring pack will be granted a link to download CVs from students collected not only during the event but also some time before and after the event.</p>
</div>
</div>
<div id="conditions" class="column-group gutters">
<div class="all-100">
<h2>Partnership Details</h2>
<h3>Partnership Genres <span>click on the tabs to expand</span></h3>
<div class="container">
<div class="heading"><div class="toggleHead">+</div>Main Event</div>
<div class="content">
<div class="PackageContent">Partnership Levels</div>
<table class="all-100">
<thead>
<tr>
<th class="all-40">Item</th>
<th class="all-15">Diamond</th>
<th class="all-15">Platinum</th>
<th class="all-15">Gold</th>
<th class="all-15">Silver</th>
</tr>
</thead>
<tbody>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Curricula</td><td>√</td><td>√</td><td>√</td><td>√</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Curricula</h3>
<p>Every sponsor that acquires a sponsoring pack will be granted a link to download CVs from students collected not only during the event but also some time before and after the event.</p>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Stand</td><td>5 days</td><td>3 days</td><td>2 days</td><td>2 days</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Stand</h3>
<p>You will have the possibility to rent a (or bring your own) stand during the event, at Instituto Superior Técnico.</p>
<p>Stand Specifications:</p>
<ul>
<li>Dimensions: 3x3x2.5m;</li>
<li>Carpeted;</li>
<li>Back wall. (Side walls in case of being next to another stand);</li>
<li>Electricity - three (3) plugs;</li>
<li>Lights - three (3) spot lights;</li>
<li>Lettering with the company’s name;</li>
<li>Two (2) tables;</li>
<li>Two (2) chairs;</li>
<li>In the case of use of your own stand, the walls and lettering are removed.</li>
</ul>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/stand_1.jpg">
</div>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/stand_2.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Presentation</td><td>√</td><td>√</td><td>√</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Presentation</h3>
<p>You will be able to make a company's presentation to an audience of students that will be at the event. The presentation allows the company to introduce and explain to the students their field of work, the projects they are or were working on, but also the job opportunities that might be available to the students in the company.</p>
<ul style="list-style-type:disc;">
<li>45 min session divided as such:</li>
<ol>
<li>5 min to present the company and get the students to learn a little more about the company itself;</li>
<li>30 min presentation (Preferably by Engineers or LEIC/IST Alumni);</li>
<li>Semi-technical presentations tend to be preferred by the students;</li>
<li>10 min for Q&A.</li>
</ol>
<li>Rooms with capacity for 50.</li>
</ul>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/presentationAudience.jpg">
</div>
<p></p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/presentationAudience2.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate redirectPub">
<td class="firstTd"><div class="toggle">+</div>Advertising Package</td><td>Exclusive</td><td>Maximum</td><td>Medium</td><td>Minimum</td></a>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Custom Activity</td><td>√</td><td>√</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Custom Activity</h3>
<p>This custom activity can be a workshop, for example, or you can also suggest and work alongside us to design a custom activity for your company. All custom activities must be approved by SINFO's team to ensure their feasibility.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/customActivity.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Keynote Sponsorship</td><td>√</td><td class="notIncluded">x</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Keynote Sponsorship</h3>
<p>The sponsorship and the company's name and logo are mentioned and shown both in the beginning and at the end of the talk, during the prizes draw. The Company logo or name will be on our publicity materials clearly indicating the “Sponsored by” to the specific keynote. The logo will also shown in full during our live stream, seen by more than 20.000 spectators live (data from 21st SINFO’s Jason Gregory Keynote). Other forms of keynote sponsorship can be discussed with the organizers.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center selected">
<img src="img/sponsors/keynoteSponsorship.jpg">
</div>
<p></p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/keynoteSponsorship2.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="alterprice">
<td class="firstTd">Price sum of all individual items</td><td>9,377.50€</td><td>5,472.50€</td><td>3,300.00€</td><td>1,677.50€</td>
</tr>
<tr class="price">
<td class="firstTd">Price</td><td>4,300.00€</td><td>3,000.00€</td><td>2,200.00€</td><td>1,650.00€</td>
</tr>
<tr class="discount">
<td class="firstTd">Saving</td><td>- 5,077.50€</td><td>- 2.472.50€</td><td>- 1,100€</td><td>- 27.50€</td>
</tr>
<tr class="choose">
<td class="firstTd" colspan="5">
Unlike previous years, we <b>don't charge VAT</b> this year, with the above presented value being the <b>final value</b> of each package.
</td>
</tr>
<tr class="perks">
<td class="firstTd" colspan="5"><h3>Perks</h3></td>
</tr>
<tr class="perksDescription">
<td class="firstTd" colspan="5">
<ul>
<li><b>Daily free-parking</b> - The company will have a paid full-day parking for one vehicle.</li>
<li><b>Lunch discount</b> - The Company members present during the event will have the possibility to have lunch for a very low price;</li>
<li><b>Parking during the presentations</b> - The Company will have clearance to park one (1) car inside the Instituto Superior Técnico's parking lot for the duration of the presentation;</li>
<li><b>Parking during assembly and dismantling of the stands</b> - The Company will have clearance to park one (1) car inside the Instituto Superior Técnico’s parking lot during the assembly and dismantling of the stands;</li>
<li><b>Full access pass to the event for 2 company representatives</b> - Access to all the event’s activities: Talks, Workshops, Presentations, Tech Expo;</li>
<li><b>Access to the coffee-breaks</b> - Access to the event’s coffee-breaks;</li>
<li><b>Wi-Fi Access</b> - Free and unlimited access to Instituto Superior Técnico’s Wi-Fi network during the event using a company guest password;</li>
<li><b>Statistics</b> - Statistical data and opinions of visitors regarding the participation of the company, gathered from surveys carried out, during the event.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
<div class="heading" id="Publicity"><div class="toggleHead">+</div>Advertising</div>
<div class="content">
<div class="PackageContent">Advertising Levels</div>
<table class="all-100">
<thead>
<tr>
<th class="all-40">Item</th>
<th class="all-15">Exclusive</th>
<th class="all-15">Maximum</th>
<th class="all-15">Medium</th>
<th class="all-15">Minimum</th>
</tr>
</thead>
<tbody>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Folder's documentation</td><td>√</td><td>√</td><td>√</td><td>√</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Folder's documentation</h3>
<p>The Company’s documentation, pamphlets, or other elements related to the Company will be included in the more than 400 folders we give to students during the event. We advise no more than 2 itens, with a maximum size of A4.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/Capas.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the website</td><td>L</td><td>L</td><td>M</td><td>S</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the website</h3>
<p>The Company logo will be on the Sponsor's section of our website with more 5.000 monthly views on average.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/site.png">
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo on Folders</td><td>L</td><td>M</td><td>S</td><td>S</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on Folders</h3>
<p>The Company's logo will be on the more than 400 folders we give to the students during the event. The folders include the event's program and several pamphlets and companies' information.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center selected">
<img src="img/sponsors/folders.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the Showcase</td><td>L</td><td>M</td><td>S</td><td>S</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the Showcase</h3>
<p>The Company logo will be on our Showcase panel. The Showcase is a space in the Tech Expo, reserved specially speaker interaction, exhibits, and technological demonstrations showcasing new gadgets, tools and technologies.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/showcase.jpg">
</div>S
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Post on the social networks</td><td>5</td><td>4</td><td>3</td><td>2</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Post on the social networks</h3>
<p> We will make a post on our social networks with a brief presentation of the company for all of the attendees and followers. The post should be brief and can be made either by SINFO's team or the company.</p>
<ul>
<li><a href="https://www.facebook.com/sinfoist">Facebook</a> - post size limit: 500 characters.</li>
<li><a href="https://twitter.com/sinfo_ist">Twitter</a> - post size limit: 140 characters.</li>
</ul>
<b>Posts Valid until December 31, 2018</b>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the event rollup</td><td>L</td><td>M</td><td>S</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the event rollups</h3>
<p>The Company logo will be on our event rollups placed all over the event.</p>
<div class="all-30 medium-40 small-50 tiny-60 push-center selected">
<img src="img/sponsors/event_rollup.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo on the flyers</td><td>L</td><td>M</td><td>S</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the flyers</h3>
<p>The Company logo will be on the event's more than 5.000 flyers distributed prior and during the event to all participants.</p>
<p><small>Timetable of twentieth edition of SINFO.</small></p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/flyer_back.JPG">
</div>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/programs.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the online stream breaks</td><td>√</td><td>√</td><td>√</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the online stream breaks</h3>
<p>SINFO will be transmitted online through our live stream to more than 20.000 people online. The Company will have their logo shown during the transmission breaks. This offers a great way of reaching people who couldn't make it to the event that particular day or at all.</p>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo on the Sponsor's Poster</td><td>L</td><td>M</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the Sponsor's Poster</h3>
<p>The Company logo will be present on our Sponsor's Poster placed at the Tent</p>
</div>
</td></tr>
</tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on posters</td><td>L</td><td>M</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on posters</h3>
<p>The Company logo will be present on our more than 500 posters distributed and placed at Instituto Superior Técnico.
<div class="all-50 medium-60 small-100 tiny-100 push-center selected">
<img src="img/sponsors/posters.jpg">
</div>
</p>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo in our physical banners</td><td>L</td><td>M</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo in our physical banners</h3>
<p>The Company logo will be on the banners located at both primary entrances of IST-Alameda and also on the Computer Engineering building, IST-Taguspark entrance.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/banner.JPG">
</div>
<div class="all-30 medium-30 small-50 tiny-50 push-center">
<img src="img/sponsors/banner-lateral.JPG">
</div>
</div>
<p><small>Banner placed at the main entrance of the IST (at Alameda campus) in the nineteenth edition of SINFO.</small></p>
</div>
</td></tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the website's main page</td><td>L</td><td>M</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the website's main page</h3>
<p>The Company logo will be on SINFO’s website and will be shown on every page and section of the website, allowing it to be viewed by more than 5.000 average monthly visitants.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/LogoSiteEv.png">
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo Merchandising</td><td>L</td><td>M</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo T-shirt</h3>
<p>The Company logo will be on the back of our t-shirts that are sold at SINFO’s stand during the event. An average of 300 t-shirts are sold every year.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/tshirts-rsz.JPG">
</div>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/tshirts.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on social networks' banners</td><td>L</td><td>M</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on social networks' banners</h3>
<p>The Company logo will be on our Social Network's cover during the event.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/LogoNewsfeed.png">
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo on pens</td><td>√</td><td class="notIncluded">x</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on pens</h3>
<p>The Company logo will be on more than 2.000 pens distributed during the event.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/caneta-rsz.JPG">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the online stream at all time</td><td>√</td><td class="notIncluded">x</td><td class="notIncluded">x</td><td class="notIncluded">x</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the online stream at all time</h3>
<p> The Company logo will be on the live stream as a watermark for more than 20.000 people to see.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/liveStream.jpg">
</div>
</div>
</td></tr>
</tr>
</tbody>
</table>
</div>
</div>
<br><br>
<h3>Individual items <span>click on the tabs to expand</span></h3>
<p>The following items can be purchased individually. For more info on prices associated with these elements, contact the committee member assigned to contact your company.</p>
<div class="container">
</div>
<div class="heading"><div class="toggleHead">+</div>Main Event</div>
<div class="content">
<div class="indPackDescription">
<table class="all-100">
<tbody>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Presentation</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Presentation</h3>
<p>You will be able to make a company's presentation to an audience of students that will be at the event. The presentation allows the company to introduce and explain to the students their field of work, the projects they are or were working on, but also the job opportunities that might be available to the students in the company.</p>
<ul style="list-style-type:disc;">
<li>45 min session divided as such:</li>
<ol>
<li>5 min to present the company and get the students to learn a little more about the company itself;</li>
<li>30 min presentation (Preferably by Engineers or LEIC/IST Alumni);</li>
<li>Semi-technical presentations tend to be preferred by the students;</li>
<li>10 min for Q&A.</li>
</ol>
<li>Rooms with capacity for 50.</li>
</ul>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/presentationAudience.jpg">
</div>
<p></p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/presentationAudience2.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Stand / Day</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Stand / Day</h3>
<p>You will have the possibility to rent a (or bring your own) stand during the event, at Instituto Superior Técnico.</p>
<p>IST stand specifications:</p>
<ul>
<li>Dimensions: 3x3x2.5m;</li>
<li>Carpeted;</li>
<li>Back wall. (Side walls in case of being next to another stand);</li>
<li>Electricity - three (3) plugs;</li>
<li>Lights - three (3) spot lights;</li>
<li>Lettering with the company’s name;</li>
<li>Two (2) tables;</li>
<li>Two (2) chairs;</li>
<li>In the case of use of your own stand, the walls and lettering are removed.</li>
</ul>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/stand_1.jpg">
</div>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/stand_2.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Workshop</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Workshop</h3>
<p>You will be able to make a workshop to an audience of students that will be at the event.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center selected">
<img src="img/sponsors/workshops_1.jpg">
</div>
<p></p>
<div class="all-50 medium-60 small-100 tiny-100 push-center selected">
<img src="img/sponsors/workshops_2.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Folder's documentation</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Folder's documentation</h3>
<p>The Company’s documentation, pamphlets, or other elements related to the Company will be included in the more than 400 folders we give to students during the event. We advise no more than 2 itens, with a maximum size of A4.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/Capas.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo on Folders</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Logo on Folders</h3>
<p>The Company's logo will be on the more than 400 folders we give to the students during the event. The folders include the event's program and several pamphlets and companies' information.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center selected">
<img src="img/sponsors/folders.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the flyers</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Logo on the flyers</h3>
<p>The Company logo will be on the event’s more than 5.000 flyers distributed prior and during the event to all participants.</p>
<p><small>Timetable of twentieth edition of SINFO.</small></p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/flyer_back.JPG">
</div>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/programs.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item ">
<td class="firstTd"><div class="toggle">+</div>Logo on the Website</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the Website</h3>
<p>The Company logo will be on the Sponsor's section of our website with more 5.000 monthly views on average.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/site.png">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the Showcase</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Logo on the Showcase</h3>
<p>The Company logo will be on our Showcase panel. The Showcase is a space in the Tech Expo, reserved specially speaker interaction, exhibits, and technological demonstrations showcasing new gadgets, tools and technologies.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/showcase.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Social Networks Posts</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Social Networks Posts</h3>
<p> We will make a post on our social networks with a brief presentation of the company for all of the attendees and followers. The post should be brief and can be made either by SINFO's team or the company.</p>
<ul>
<li><a href="https://www.facebook.com/sinfoist">Facebook</a> - post size limit: 500 characters.</li>
<li><a href="https://twitter.com/sinfo_ist">Twitter</a> - post size limit: 140 characters.</li>
</ul>
<b>Posts Valid until December 31, 2018</b>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the Sponsor's Poster</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Logo on the Sponsor's Poster</h3>
<p>The Company logo will be present on our Sponsor's Poster placed at the Tent</p>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo on the event rollups</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Logo on the event rollups</h3>
<p>The Company logo will be on our event rollups placed all over the event.</p>
<div class="all-30 medium-40 small-50 tiny-60 push-center selected">
<img src="img/sponsors/event_rollup.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo on the online stream breaks</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Logo on the online stream breaks</h3>
<p>SINFO will be transmitted online through our live stream to more than 20.000 people online. The Company will have their logo shown during the transmission breaks. This offers a great way of reaching people who couldn't make it to the event that particular day or at all.</p>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo on posters</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Logo on posters</h3>
<p>The Company logo will be present on our more than 500 posters distributed and placed at Instituto Superior Técnico.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center selected">
<img src="img/sponsors/posters.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo in our physical banners</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Logo in our physical banners</h3>
<p>The Company logo will be on the banners located at both primary entrances of IST-Alameda and also on the Computer Engineering building and IST-Taguspark entrance.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/banner.JPG">
</div>
<div class="all-30 medium-30 small-50 tiny-50 push-center">
<img src="img/sponsors/banner-lateral.JPG">
</div>
</div>
<p><small>Banner placed at the main entrance of the IST (at Alameda campus) in the nineteenth edition of SINFO.</small></p>
</div>
</td></tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Logo on the website's main page</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on the website's main page</h3>
<p>The Company logo will be on SINFO’s website and will be shown on every page and section of the website, allowing it to be viewed by more than 5.000 average monthly visitants.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/LogoSiteEv.png">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Logo Merchandising</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo Mershandising</h3>
<p>The Company logo will be on the back of our t-shirts that are sold at SINFO’s stand during the event. An average of 300 t-shirts are sold every year.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/tshirts-rsz.JPG">
</div>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/tshirts.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item ">
<td class="firstTd"><div class="toggle">+</div>Logo on social networks' banners</td>
<tr class="description"><td colspan="5" class="noPadding">
<div class="shadow">
<h3>Logo on social networks' banners</h3>
<p>The Company logo will be on our Social Network's cover during the event.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/LogoNewsfeed.png">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Keynote Sponsorship</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Keynote Sponsorship</h3>
<p>The sponsorship and the company's name and logo are mentioned and shown both in the beginning and at the end of the talk, during the prizes draw. The Company logo or name will be on our publicity materials clearly indicating the “Sponsored by” to the specific keynote. The logo will also shown in full during our live stream, seen by more than 20.000 spectators live (data from 21st SINFO’s Jason Gregory Keynote). Other forms of keynote sponsorship can be discussed with the organizers.</p>
<div class="column-group push-center half-gutters">
<div class="all-50 medium-60 small-100 tiny-100 push-center selected">
<img src="img/sponsors/keynoteSponsorship.jpg">
</div>
<p></p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/keynoteSponsorship2.jpg">
</div>
</div>
</div>
</td></tr>
</tr>
<tr class="item">
<td class="firstTd"><div class="toggle">+</div>Custom Activity</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Custom Activity</h3>
<p>This custom activity can be a workshop, for example, or you can also suggest and work alongside us to design a custom activity for your company. All custom activities must be approved by SINFO's team to ensure their feasibility.</p>
<div class="all-50 medium-60 small-100 tiny-100 push-center">
<img src="img/sponsors/customActivity.jpg">
</div>
</div>
</td></tr>
</tr>
<tr class="item alternate">
<td class="firstTd"><div class="toggle">+</div>Activity Sponsorship</td>
<tr class="description"><td class="noPadding">
<div class="shadow">
<h3>Activity Sponsorship</h3>
<p>You can be the sponsor of one of the many Workshops, Hackatons and or any other activities held during the event. </p>
</div>
</td></tr>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div id="startups" class="column-group gutters">
<div class="all-100">
<h2>Startups</h2>
<p>Are you a startup with less than 3 years looking to show what you do, find collaborators and do some networking?</p>
<p>Get in touch with us!</p>
</div>
</div>
<div id="deadlines" class="column-group gutters">
<div class="all-100">
<h2>Deadlines</h2>
<p>Partnership Confirmation: <b>until January 22</b>.</p>
</div>
</div>
<div id="more-information" class="column-group gutters">
<div class="all-100">
<h2>For more information</h2>
<p>We'd be happy to answer any questions, requests for extra information or alternative small participation raised by reading this page. <br> To do this, do not hesitate to contact us via the following form:</p>
</div>
<div class="all-100">
<form class="ink-form" method="post" action="php/emailRequest.php">
<div class="column-group gutters">
<div class="starup-control">
<input type="checkbox" id="startupCheck" name="startupCheck" value="isStartup"><label for="startupCheck"> I'm a StartUp</label>
</div>
<div class="company-control control-group all-40 small-100 tiny-100 required">
<label id="CompanyName" for="company">Company or Entity</label>
<div class="control">
<input type="text" name="company" id="required-company">
</div>
<span class="company-err"></span>
</div>
<div class="email-control control-group all-40 small-100 tiny-100 required">
<label for="email">Email</label>
<div class="control">
<input type="text" name="email" id="required-email">
</div>
<span class="email-err"></span>
</div>
<div class="control-group all-20 small-100 tiny-100 submit">
<button class="ink-button" type="submit" name="submit" value="submit">Send</button>
</div>
</div>
</form>
</div>
</div>
</div>
<footer>
<div class="ink-grid">
<div class="push-left all-50 small-100 tiny-100 small-push-left">
<a href="http://tecnico.pt" target="_blank"><img src="img/logoist.png"></a>
</div>
<nav class="ink-navigation push-right medium-150 small-100 tiny-100 small-push-right">
<ul class="menu horizontal">
<a class="social-icon" target="_blank" href="https://fb.com/sinfoist"><i class="social-icon fa fa-facebook"></i></a>
<a class="social-icon" target="_blank" href="https://twitter.com/sinfoist"><i class="social-icon fa fa-twitter"></i></a>
<a class="social-icon" target="_blank" href="https://youtube.com/sinfoist"><i class="social-icon fa fa-youtube"></i></a>
<a class="social-icon" target="_blank" href="https://instagram.com/sinfoist"><i class="social-icon fa fa-instagram"></i></a>
<a class="social-icon" target="_blank" href="https://github.com/sinfo"><i class="social-icon fa fa-github"></i></a>
<a class="social-icon" target="_blank" href="mailto:geral@sinfo.org"><i class="social-icon fa fa-envelope"></i></a>
</ul>
</nav>
</div>
<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-49601832-1', 'sinfo.org');
ga('send', 'pageview');
</script>
</footer>
</body>
</html>