-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsponsor_levels.php
97 lines (79 loc) · 2.98 KB
/
sponsor_levels.php
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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<?php $thisPage="Sponsor"; ?>
<head>
<?php include('inc/header.php') ?>
<link rel="shortcut icon" href="http://conference.scipy.org/scipy2013/favicon.ico" />
</head>
<body>
<div id="container">
<?php include('inc/page_headers.php') ?>
<section id="sidebar">
<?php include("inc/sponsors.php") ?>
</section>
<section id="main-content">
<h1>Sponsorship Packages Available</h1>
<h2>Platinum | $12,000</h2>
<ul class="dense">
<li>Benefits: Platinum Sponsor link with logo on SciPy 2013 website</li>
<li>12' x 2' banner (sponsor provided) in main session auditorium</li>
<li>Listed as the sponsor of outstanding student SciPy contributors</li>
<li>Large logo on t-shirt</li>
<li>Listed as Platinum Sponsor on 4’ x 8’ Sponsor Banner at main entrance</li>
<li>Exhibit table during evening reception</li>
<li>Exhibit table in main foyer (co-located with Poster Session during conference)</li>
<li>Listing on the SciPy 2013 Jobs page from May 1 – July 31, 2013</li>
<li>1/2 page advertisement in program</li>
<li>4 General Session Passes</li>
</ul>
<br />
<h2>Lanyard | one available | Platinum + $1,000</h2>
<ul class="dense">
<li>Benefits: Logo on attendee lanyards (and all Platinum benefits)</li>
</ul>
<br />
<h2>Gold | $5,000</h2>
<ul class="dense">
<li>Benefits: Gold Sponsor link with logo on SciPy 2013 website</li>
<li>Medium logo on t-shirt</li>
<li>Listed as Gold Sponsor on 4’ x 8’ Sponsor Banner at main entrance</li>
<li>Exhibit table during evening reception</li>
<li>Exhibit table in main foyer (co-located with Poster Session during conference)</li>
<li>Listing on the SciPy 2013 Jobs page from May 1 – July31, 2013</li>
<li>1/4 page advertisement in program</li>
<li>3 General Session Passes</li>
</ul>
<br />
<h2>Silver | $2,000</h2>
<ul class="dense">
<li>Benefits: Silver Sponsor link with logo on SciPy 2013 website</li>
<li>Small logo on t-shirt</li>
<li>Listed as Silver Sponsor on 4’ x 8’ Sponsor Banner at main entrance</li>
<li>1/8 page advertisement in program</li>
<li>2 General Session Passes</li>
</ul>
<br />
<h2>Additional Opportunities with listing on Sponsor Banner:</h2>
<ul class="dense">
<li>$4,000 Sponsor Wednesday Evening Welcome Reception</li>
<li>$5,000 Sponsor a lunch</li>
<li>$1,000 Sponsor a Friday or Saturday Sprint</li>
</ul>
<br />
<h2>Media Sponsors | co-promotion</h2>
<ul class="dense">
<li>Promotion opportunities: logo on website, email to conference list, social media promotion,
mention in newsletter to 25K+ list</li>
</ul>
<p>Please email <a href="mailto:[email protected]">[email protected]</a> with any questions or to reserve your Sponsorship Package.</p>
</section>
<div style="clear:both;"></div>
<footer id="page_footer">
<?php include('inc/page_footer.php') ?>
</footer>
</div>
</body>
</html>