-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsponsor.html
844 lines (818 loc) · 38.8 KB
/
sponsor.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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Sponsor Technica</title>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/sponsor.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://rawgit.com/tobia/Pause/master/jquery.pause.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/jquery.marquee.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/parallax/3.1.0/parallax.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/chart.min.js"></script>
<script src="./js/chartjs_plugin.js"></script>
<script src="./js/tooltip.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="author" content="Technica Hacks">
<meta name="description" content="World’s largest hackathon for underrepresented genders">
<meta name="robots" content="NOODP, index, follow">
<meta itemprop="name" content="Technica">
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@gotechnica">
<meta name="twitter:title" content="Technica">
<meta name="twitter:description" content="Hackathon for underrepresented genders at University of Maryland.">
<meta name="twitter:creator" content="@gotechnica">
<meta name="twitter:image" content="http://gotechnica.org/img/share-link.png">
<meta name="twitter:domain" content="http://gotechnica.org">
<!-- Google site verif -->
<meta name="google-site-verification" content="uGQ5sqadq9-6SPyKFrrOm_N5oys-xoJ7sSBKjw6LCI4">
<!-- Open Graph data (Facebook) -->
<meta property="og:title" content="Technica">
<meta property="og:description" content="Hackathon for underrepresented genders at University of Maryland.">
<meta property="og:type" content="website">
<meta property="og:url" content="http://gotechnica.org">
<meta property="og:image" content="http://gotechnica.org/img/share-link.png">
<meta property="og:image:url" content="http://gotechnica.org/img/share-link.png">
<!-- Redirect URLs -->
<script>
const path = window.location.pathname;
const redirectsGETUrl = "https://hugoburbelo-technica-url-shortener.builtwithdark.com/redirects"
const formattedPath = "/" + path;
$.get(redirectsGETUrl, redirects => {
redirects.forEach(redirect => {
if (path === redirect.host) {
window.location = redirect.target;
}
})
});
</script>
<!-- Intercom Widget -->
<script>
// We pre-filled your app ID in the widget URL: 'https://widget.intercom.io/widget/i0aisamb'
(function () { var w = window; var ic = w.Intercom; if (typeof ic === "function") { ic('reattach_activator'); ic('update', w.intercomSettings); } else { var d = document; var i = function () { i.c(arguments); }; i.q = []; i.c = function (args) { i.q.push(args); }; w.Intercom = i; var l = function () { var s = d.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = 'https://widget.intercom.io/widget/i0aisamb'; var x = d.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); }; if (w.attachEvent) { w.attachEvent('onload', l); } else { w.addEventListener('load', l, false); } } })();
window.Intercom("boot", {
app_id: "i0aisamb"
});
</script>
<script>
(function (h, o, t, j, a, r) {
h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) };
h._hjSettings = { hjid: 1902775, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script'); r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
</head>
<body>
<!-- navbar -->
<nav id="navbar" class="navbar navbar-expand-lg navbar-light sticky-top" role="navigation">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav text-center mx-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="donate.html">Donate</a>
</li>
</ul>
</div>
</nav>
<div role="main">
<!-- header -->
<div class="header">
<div class="intro heading-pink text-center">
<h1 style="padding-top: 5rem;">Help support Technica 2021!</h1>
</div>
</div>
<!--letter-->
<div class="main">
<div class="letter" style="position: relative;">
<p>Hello Potential Sponsors!</p>
<p>This coming fall, students from across the United States will organize Technica, our annual hackathon for
underrepresented genders in tech, for its <b>seventh year!</b> Technica has been the largest hackathon for
underrepresented genders in tech in the world for the past six years, and welcomed over 1868 participants from
six different continents last year. In the span of 24 hours, Technica gives our participants the opportunity to
create new applications, websites or hardware projects.</p>
<p>In 2021, Technica aims to be the first hackathon to implement a hybrid event model—an event that is hosted both
in-person and virtually, drawing on the success of our completely virtual event in 2020 and our history of
in-person events.
</p>
<p>Technica is not a typical hackathon—it serves as a place for the brightest thinkers in the country to come
together to collaborate and share their innovative ideas. Our focus is on providing a welcoming, engaging, and
creative environment to support <b>underrepresented genders</b> in tech culture. We pride ourselves in helping
both beginners and experienced hackers explore technology and develop their skills.</p>
<p>Not only does Technica serve as an incubator for creating and promoting a gender-diverse workforce in the
future, but it also provides an optimal opportunity for recruitment and outreach. We would love for you to get
involved as a sponsor for Technica 2021!</p>
<p>Our available sponsorship tiers are listed below. Additionally, we are happy to state that Technica has
<b>501(c)(3) status.</b> Please let us know if you are interested in becoming a part of Technica, or if you have
any questions or concerns about the information below. We look forward to hearing from you!
</p>
<p>Thank you,
<br>
The Technica Team
</p>
</div>
</div>
<!-- stats -->
<div class="stats">
<div class="overall-stats">
<div class="heading-pink">
<h2 class="stat-title">Statistics</h2>
</div>
<div class="row">
<div class="col-lg-5">
<div class="row" style="margin-bottom: 15px">
<div class="col-4">
<span class="stat-number">1868</span>
<br>
<span class="stat-text">Attendees</span>
</div>
<div class="col-4">
<span class="stat-number">150+</span>
<br>
<span class="stat-text">Schools</span>
</div>
<div class="col-4">
<span class="stat-number">215</span>
<br>
<span class="stat-text">Projects submitted</span>
</div>
<div class="row">
</div>
<div class="col-4">
<span class="stat-number">35</span>
<br>
<span class="stat-text">Sponsors</span>
</div>
<div class="col-4">
<span class="stat-number">36</span>
<br>
<span class="stat-text">Countries</span>
</div>
<div class="col-4">
<span class="stat-number">6</span>
<br>
<span class="stat-text">Continents</span>
</div>
</div>
</div>
<div class="col-lg-7 pl-0">
<img id="stat-photo" src="./img/winning-hackers.jpg"
alt="A group photo of 5 winning-hackers smiling and standing on stage at the awards ceremony." height="400">
</div>
</div>
</div>
</div>
<!-- demographics -->
<div class="demographics">
<div class="row">
<div class="col-lg-12">
<div class="p-0 d-lg-block d-none heading-pink">
<h2>Demographics</h2>
</div>
<div class="row mb-lg">
<div class="col-lg-7 p-0">
<div class="row demo-legend demo-section stretch m-sm-0 m-lg-2">
<div class="col-lg-6">
<canvas id="edulevels" aria-label="Educational Level Breakdown Chart" role="img"></canvas>
</div>
<div class="col-lg-6">
<span class="demo-name text-left edu-text"><span class="edu-dot"
style="background: #00FFFF"></span>Undergraduate</span>
<span class="demo-stat">61%</span>
<br>
<span class="demo-name text-left"><span class="edu-dot" style="background: #FF5789"></span>High
School</span>
<span class="demo-stat">23%</span>
<br>
<span class="demo-name text-left"><span class="edu-dot" style="background: #2D2D2D"></span>Graduate
School</span>
<span class="demo-stat">0.6%</span>
<br>
<span class="demo-name text-left"><span class="edu-dot" style="background: #A88AA8"></span>Middle
School</span>
<span class="demo-stat">1.7%</span>
</div>
</div>
</div>
<div class="col-lg-5 p-0">
<div class="demo-section demo-ethnicities my-lg-2 mr-lg-2 mt-xl-2">
<span class="demo-name">American Indian or Alaska Native</span>
<span class="demo-stat">0.5%</span>
<br>
<span class="demo-name">Asian / Pacific Islander</span>
<span class="demo-stat">56.6%</span>
<br>
<span class="demo-name">Black or African American</span>
<span class="demo-stat">9%</span>
<br>
<span class="demo-name">Hispanic or Latino</span>
<span class="demo-stat">5.9%</span>
<br>
<span class="demo-name">Middle Eastern or North African</span>
<span class="demo-stat">1.9%</span>
<br>
<span class="demo-name">Native Hawaiian or Pacific Islander</span>
<span class="demo-stat">0.7%</span>
<br>
<span class="demo-name">White / Caucasian</span>
<span class="demo-stat">16%</span>
<br>
<span class="demo-name">Prefer not to answer</span>
<span class="demo-stat">4.1%</span>
</div>
</div>
</div>
<div class="row lower my-lg-3">
<div class="col order-1 p-0">
<div class="demo-section stretch order-1 ml-xl-2 ml-lg-2">
<span class="demo-name ">Minors</span>
<span class="demo-stat">24.9%</span>
<br>
<span class="demo-name">Non-Minors</span>
<span class="demo-stat">75.1%</span>
</div>
</div>
<div class="col-lg-6 order-3 order-lg-2 p-0">
<div class="demo-section mx-lg-2">
<span class="demo-name">First time hackers</span>
<span class="demo-stat">49.95%</span>
<br>
<span class="demo-name">First time at Technica</span>
<span class="demo-stat">65.17%</span>
</div>
</div>
<div class="col order-2 order-lg-3 p-0">
<div class="demo-section stretch mr-lg-2">
<span class="demo-name">Female</span>
<span class="demo-stat">96.8%</span>
<br>
<span class="demo-name">Non-Binary</span>
<span class="demo-stat">2.9%</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- prospectus -->
<div class="prospectus">
<div class="heading-pink">
<h2> Sponsorship Prospectus </h2>
</div>
<div class="table-responsive prospectus-table">
<table class="table table-hover">
<thead>
<tr class="text-center prospectus-header">
<td scope="col" class="text-left pl-0 align-bottom sticky-top">Contribution Amount</td>
<td scope="col" class="contr-amt sticky-top">Starter<br>$1,000</td>
<td scope="col" class="contr-amt sticky-top">Bronze<br>$4,000</td>
<td scope="col" class="contr-amt sticky-top">Silver<br>$6,000</td>
<td scope="col" class="contr-amt sticky-top">Gold<br>$10,000</td>
<td scope="col" class="contr-amt sticky-top">Platinum<br>$15,000</td>
<td scope="col" class="contr-amt sticky-top">Partner<br>$20,000</td>
</tr>
</thead>
<tbody>
<tr>
<th class="pl-0" colspan="7" scope="colgroup">General</th>
</tr>
<tr>
<td> Mentors at event <span data-toggle="tooltip"
title="Mentors are a great way to represent your company or organization at Technica and help our hackers face-to-face—over web conference or in-person—with any questions they might have about their projects. Mentors can be of any gender.">ⓘ</span>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
</tr>
<tr>
<td> Reserved virtual & in-person booth at event <span data-toggle="tooltip"
title="Sponsors have their own virtual booth in the virtual Sponsorship hall of our virtual platform during the event, as well as the option to have an in-person booth at an in-person Technica location. The booth is your “home base” for the event, from which you can post or distribute marketing materials, interact with hackers, and make your presence felt at Technica!">ⓘ</span>
</td>
<td></td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
</tr>
<tr>
<td> Prize category <span data-toggle="tooltip"
title="This prize category can be something general, such as “Best Security Hack” or “Best Hack for Diversity and Inclusion”, or something branded, such as “Best Use of [insert company]’s API”. Our hackers will have the option of submitting their hacks/projects to your prize category, and you will be able to judge projects, select winners, and distribute your own prizes accordingly during the closing ceremony. We encourage our sponsors to remember that Technica has hackers that come from diverse backgrounds when choosing their prize categories.">ⓘ</span>
</td>
<td></td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
</tr>
<tr>
<td> Techni-chat <span data-toggle="tooltip"
title="Techni-chats take place on the main event-long livestream which can feature your representative in a panel moderated by our team. This will include a live Q&A with our attendees. This will be recorded and posted on the Technica Youtube channel.">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
<td class="align-middle">
<div class="benefit general-spons"></div>
</td>
</tr>
<tr>
<td> Tech talk/Workshop <span data-toggle="tooltip"
title="A tech talk/workshop is a great way for sponsors to interact with our hackers and can be on any topic of your choice. Past workshops have covered a range of topics from cybersecurity to web development to machine learning. These will be done both in-person and over our web conference platform, with the option to make it as interactive as desired.">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="general-text text-center">45 min</div>
</td>
<td class="align-middle">
<div class="general-text text-center">75 min</div>
</td>
<td class="align-middle">
<div class="general-text text-center">90+ min</div>
</td>
</tr>
<tr>
<td> Community Events <span data-toggle="tooltip"
title="There will be a variety of events held throughout 2021 outside of Technica weekend to allow our hackers more opportunities to learn and interact with companies. This is an opportunity for sponsors to talk to members of the Technica community by hosting a workshop, talk, or any other event during one of our 1-2 day sessions this year.">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="general-text text-center">1</div>
</td>
<td class="align-middle">
<div class="general-text text-center">2</div>
</td>
</tr>
<tr>
<th class="pl-0" colspan="7" scope="colgroup">Recruiting</th>
</tr>
<tr>
<td> Networking portal <span data-toggle="tooltip"
title="The speed-dating portal will be integrated into the Technica platform, and will allow recruiters and hackers to be randomly paired with one another for a few minutes at a time to chat. This provides company representatives exposure and an opportunity to recruit with hackers that may not have visited their booth.">ⓘ</span>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
</tr>
<tr>
<tr>
<td> Recruiters at booth <span data-toggle="tooltip"
title="You are welcome to have recruiters and recruiting materials at your booth at Technica, where you will be able to interact with all of our hackers. You may bring as many representatives as you’d like. There will be a Sponsorship Fair during which hackers will be encouraged to visit your open booths, and you can also choose to initiate 1:1s with hackers.">ⓘ</span>
</td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
</tr>
<tr>
<td> Access to resume database <span data-toggle="tooltip"
title="With this perk, we provide a database of all of our registrants’ resumes to our sponsors following the event. Sponsors at or higher than the Gold Tier will receive the database before Technica, while Silver Tier sponsors will receive it after the event. The database will be sortable and searchable for easy usage.">ⓘ</span>
</td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit-text text-center">Post-Technica</div>
</td>
<td class="align-middle">
<div class="benefit-text text-center">Pre-Technica</div>
</td>
<td class="align-middle">
<div class="benefit-text text-center">Pre-Technica</div>
</td>
<td class="align-middle">
<div class="benefit-text text-center">Pre-Technica</div>
</td>
</tr>
<tr>
<td> Schedule hacker 1:1 <span data-toggle="tooltip"
title="With receipt of the resume database prior to the event, feel free to note down hackers you’d like to reach out to. At the event, invite individual hackers for a 1:1 conversation with a company recruiter.">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
</tr>
<tr>
<td> Pre-event email to participants <span data-toggle="tooltip"
title="Around 2-3 days before the event itself, we will allow sponsors with this perk to email all of our registrants up to that point to encourage participants to keep an eye out for your company’s booth and activities during the event. The message would be sent by the Technica Team on behalf of your organization/company, but we will leave the content of the email up to you!">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit recruit"></div>
</td>
</tr>
<tr>
<th class="pl-0" colspan="7" scope="colgroup">Branding</th>
</tr>
<tr>
<td> Logo on landing page & T-shirt <span data-toggle="tooltip"
title="Sponsors will have their logos (ordered and scaled by sponsorship tier) on our website and T-shirt.">ⓘ</span>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
</tr>
<tr>
<td> Distribution of marketing materials <span data-toggle="tooltip"
title="Sponsors are able to distribute marketing materials to our hackers in their virtual and in-person booths. This can include any type of virtual swag (ex: promo codes), informational materials (ex: pamphlets, flyers, or videos), or physical swag (ex: T-shirts, masks).">ⓘ</span>
</td>
<td></td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
</tr>
<tr>
<td> Message on livestream <span data-toggle="tooltip"
title="Advertise your booth and opportunities and make your presence known to our participants in a pre-recorded message on our main livestream! The length of the message will be based on the sponsorship tier.">ⓘ</span>
</td>
<td></td>
<td></td>
<td class="align-middle">
<div class="brand-text text-center">0.5 min</div>
</td>
<td class="align-middle">
<div class="brand-text text-center">1 min</div>
</td>
<td class="align-middle">
<div class="brand-text text-center">1.5 min</div>
</td>
<td class="align-middle">
<div class="brand-text text-center">2 min</div>
</td>
</tr>
<tr>
<td> Opening speaker <span data-toggle="tooltip"
title="Sponsors with this perk will get speaking time at the opening ceremony on our main Livestream to discuss their company, their prize category, and anything else that they would like! Please keep in mind the designated time allotment for your tier when planning your presentation.">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="brand-text text-center">1 min</div>
</td>
<td class="align-middle">
<div class="brand-text text-center">3 min</div>
</td>
<td class="align-middle">
<div class="brand-text text-center">5-10 min</div>
</td>
</tr>
<tr>
<td> Social media shout-out <span data-toggle="tooltip"
title="Technica social media accounts will promote your company through a customized message of choice at some point leading up to the day of the event. We will post about your company on all forms of social media you select (Twitter, LinkedIn, Instagram, etc).">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
</tr>
<tr>
<td> Branded mini-challenge <span data-toggle="tooltip"
title="This is a great way to engage with our hackers in a fun, informal way over a virtual or in-person activity of choice. A mini-challenge usually involves an activity like a game or a short event with prizes. We will work with you to arrange the logistics, and will also be sure to advertise and announce this mini-challenge during the event itself.">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
</tr>
<tr>
<td> Film feature <span data-toggle="tooltip"
title="Technica’s end-of-year film, a recap of the event created by our video team, will feature sponsors with this perk. This will involve clips from a workshop, booth, interview, or other content from the event featuring these company representatives.">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
</tr>
<tr>
<td> "Co-hosted by..." <span data-toggle="tooltip"
title="Partner-level sponsors will be given special recognition in our marketing materials as a co-host. We look forward to working with Partner-level sponsors to help coordinate and accommodate their marketing needs.">ⓘ</span>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="align-middle">
<div class="benefit brand"></div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="table-responsive add-ons">
<table class="table">
<thead>
<tr>
<th class="text-center align-bottom pl-0" colspan="3" scope=colgroup style="border-bottom: 1px solid black;">Add-Ons</th>
</tr>
</thead>
<tbody>
<tr class="text-center">
<td style="width:33.33%;">
Tech + X
<span data-toggle="tooltip"
title="The mission of the Tech+X series, where X is replaced by some other field, is to expose students of all different backgrounds to the various intersections between technology and select “non-tech” fields. We feel that by connecting other fields to technology, we can inspire people to take a greater interest in it. These talks are held prior to Technica on a web conferencing platform followed by a live Q&A. This will be recorded and posted on the Technica youtube channel.">ⓘ</span>
<br>
$1,000
</td>
<td style="width:33.33%;">
Co-branded swag package
<span data-toggle="tooltip"
title="This is an opportunity for your company swag to be mailed alongside our Technica swag to all recipients of the Technica mailing package after the conclusion of the event. This is an excellent branding opportunity, and a way to hand out company swag to people who could not come to an in-person event.">ⓘ</span>
<br>
Contact us
<br>
</td>
</tr>
</tbody>
</table>
</div>
<!-- contact -->
<div class="contact">
<div class="heading-pink">
<br>
<h2> Let's Get In Touch </h2>
</div>
<p>Contact us at <a id="email-link" href="mailto:[email protected]" style="color: #82708F;">[email protected]</a> or send an inquiry below!</p>
<div class="inquiry" id='inquiry-wrapper'>
<form>
<div class="info-input">
<div class="form-row">
<div class="form-group col-md-7">
<label class="sr-only" for="name-input">Full Name</label>
<input type="text" class="form-control" id="name-input" placeholder="Full Name">
</div>
<div class="form-group col-md-5">
<label class="sr-only" for="company-input">Company Name</label>
<input type="text" class="form-control" id="company-input" placeholder="Company Name">
</div>
</div>
<div class="form-group mb-0">
<label class="sr-only" for="sponsor-email-input">Email Address</label>
<input type="email" class="form-control" id="sponsor-email-input" placeholder="Email Address">
</div>
</div>
<div class="form-group inquiry-box mb-1">
<label class="sr-only" for="inquiry-input">Inquiry</label>
<textarea class="form-control" id="inquiry-input" rows="7" placeholder="Inquiry"></textarea>
</div>
<div class="text-right">
<button type="submit" class="btn inquiry-btn" id="submit-inquiry-button">Send</button>
</div>
</form>
</div>
<div id="thank-you">
Thank you for your inquiry. Our sponsorship team has received your message and will follow up.
</div>
</div>
</div>
<div role="contentinfo">
<div class="contact-footer">
<div class="contact section text-center">
<div class="social-buttons">
<a href="https://www.youtube.com/channel/UC-Wo4UqhGUKQEp4o-51VMIw/" target="_blank">
<div class="blue-circle1">
<img src="./img/socials/w_youtube.svg" alt="YouTube icon">
</div>
</a>
<a href="https://twitter.com/gotechnica?lang=en" target="_blank">
<div class="blue-circle2">
<img src="./img/socials/w_twitter.svg" alt="Twitter icon">
</div>
</a>
<a href="https://www.facebook.com/gotechnica/" target="_blank">
<div class="blue-circle3">
<img src="./img/socials/w_facebook.svg" alt="Facebook icon">
</div>
</a>
<a href="https://www.instagram.com/gotechnica/" target="_blank">
<div class="purple-circle1">
<img src="./img/socials/w_instagram.svg" alt="Instagram icon">
</div>
</a>
<a href="https://www.tiktok.com/@gotechnica?" target="_blank">
<div class="purple-circle2">
<img src="./img/socials/w_tiktok.svg" alt="TikTok icon">
</div>
</a>
<a href="https://medium.com/gotechnica" target="_blank" >
<div class="pink-circle1">
<img src="./img/socials/w_medium.svg" alt="Medium icon">
</div>
</a>
<a href="https://linkedin.com/company/gotechnica" target="_blank">
<div class="pink-circle2">
<img src="./img/socials/w_linkedin.svg" alt="LinkedIn icon">
</div>
</a>
</div>
</div>
</div>
<div class="footer" style="background-color: #E9E3ED;">
<div class="container text-center" style="padding: 1%;">
<div id="footer-links">
<a href="./files/terms.pdf" target="_blank">Code of Conduct</a> | <a href="donate.html">Donate</a>
</div>
<span style="opacity: .7">Copyright © 2021 Technica</span>
</div>
</div>
<!-- mlh badge -->
<a id="mlh-trust-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000" href="https://mlh.io/seasons/2021/events" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2021/mlh-trust-badge-2021-white.svg" alt="Major League Hacking 2021 Hackathon Season" style="width:100%"></a>
<script src="./js/sponsor-submit.js"></script>
</body>
</html>
<!-- Pie Chart -->
<script>
var ctx = document.getElementById('edulevels');
colors = [
'rgb(0, 255, 255)',
'rgb(255, 123, 172)',
'rgb(45, 45, 45)',
'rgb(182, 161, 196)'
]
var eduChart = new Chart(ctx, {
type: 'doughnut',
data: {
datasets: [{
data: [1140, 429, 11, 31],
backgroundColor: colors,
borderColor: [
'rgba(0, 255, 255)',
'rgba(255, 123, 172)',
'rgb(45, 45, 45)',
'rgb(182, 161, 196)'
],
}]
},
options: {
cutoutPercentage: 60,
legend: {
display: false
},
elements: {
center: {
text: 'Educational',
text2: 'Levels',
color: '#B6A1C4',
fontStyle: 'Poppins',
}
}
}
});
var togglePattern = document.getElementById('togglePattern');
togglePattern.addEventListener('change', function (e) {
var fill = (e.currentTarget.checked) ? patterns : colors;
eduChart.data.datasets[0].backgroundColor = fill;
eduChart.update();
});
</script>