-
Notifications
You must be signed in to change notification settings - Fork 0
/
college.html
402 lines (343 loc) · 20.4 KB
/
college.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--<title>College Career Bootcamp - Equipping College Students for Career Success</title>-->
<title>College Career Bootcamp - We Prepare College Students For Career Success</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An intensive course teaching college students how to find a job, use LinkedIn, organize their job search, network, and manage their career in college and afterwards.">
<meta name="author" content="CollegeCareerBootcamp.com">
<meta property="og:image"content="http://www.CollegeCareerBootcamp.com/img/ccb_facebook.png" />
<meta property="og:site_name" content="CollegeCareerBootcamp.com" />
<meta property="og:title" content="College Career Bootcamp - We Prepare College Students For Career Success" />
<meta property="og:url" content="http://www.CollegeCareerBootcamp.com/college.html" />
<meta property="og:description" content="An intensive course teaching college students how to find a job, use LinkedIn, organize their job search, network, and manage their career in college and afterwards." />
<link rel="icon" href="/img/favicon.png" type="image/x-icon" />
<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Alfa+Slab+One|Montserrat' rel='stylesheet' type='text/css'>
<!-- Styles -->
<link href="/css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 50px; /* For nav bar */
}
</style>
<link href="/css/bootstrap-responsive.css" rel="stylesheet">
<!-- FontAwesome -->
<link rel="stylesheet" href="/css/font-awesome.min.css">
<!--[if IE 7]>
<link rel="stylesheet" href="assets/css/font-awesome-ie7.min.css">
<![endif]-->
<!-- Custom styles last -->
<link href="/css/custom.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target=".navbar">
<!-- Facebook Like Button Crap -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=309634745744633";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- NAVBAR
================================================== -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<!-- Responsive Navbar Part 1: Button for triggering responsive navbar (not covered in tutorial). Include responsive CSS to utilize. -->
<div class="pull-right">
<a class="btn btn-success anchorLink" style="margin-top: 10px;" href="#register">Register</a>
<a class="btn btn-primary" style="margin-top: 10px"; target="_blank" href="http://www.facebook.com/sharer.php?u=http://www.CollegeCareerBootcamp.com/college.html"><i class="icon-facebook-sign"></i> Share us!</a>
</div>
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="http://www.CollegeCareerBootcamp.com">College Career Bootcamp</a>
<!-- Responsive Navbar Part 2: Place all navbar contents you want collapsed withing .navbar-collapse.collapse. -->
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="#" class="anchorLink">Home</a></li>
<li><a href="#covered" class="anchorLink">What's Covered?</a></li>
<li><a href="#about" class="anchorLink">Who We Are</a></li>
</ul>
</div><!--/.nav-collapse -->
</div> <!-- /.container -->
</div><!-- /.navbar-inner -->
</div><!-- /.navbar -->
<!-- Carousel
================================================== -->
<div id="home"> <!-- Used for anchor for menu -->
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<img src="/img/slides/slide-grad.jpg" alt="">
<div class="container">
<div class="carousel-caption">
<h1>We equip college students for career success.</h1>
<p class="lead">We teach you the skills you need to land a job <em>during</em> and <em>after</em> college.</p>
<a class="btn btn-large btn-success" href="#register">Register in Austin <i class="icon-thumbs-up"></i></a>
</div>
</div>
</div>
<div class="item">
<img src="/img/slides/slide-employers.jpg" alt="">
<div class="container">
<div class="carousel-caption">
<h1>Attract employers to knock on your door.</h1>
<p class="lead">Develop a professional online identity so employers find you first.</p>
<a class="btn btn-large btn-primary" href="#employers">Learn more</a>
</div>
</div>
</div>
<div class="item">
<img src="/img/slides/slide-city.jpg" alt="">
<div class="container">
<div class="carousel-caption">
<h1><u>Marketabilty</u>: Putting your degree investment to work.</h1>
<p class="lead">We teach you how to research the job market and adapt while still in college.</p>
<a class="btn btn-large btn-primary" href="#marketability">Learn more</a>
</div>
</div>
</div>
<div class="item">
<img src="/img/slides/slide-tools.jpg" alt="">
<div class="container">
<div class="carousel-caption">
<h1>Leverage tools for finding jobs in your major.</h1>
<p class="lead">Learn how to search for part-time jobs, internships, and full-time employment.</p>
<a class="btn btn-large btn-primary" href="#tools">Learn more</a>
</div>
</div>
</div>
<div class="item">
<img src="/img/slides/slide-hidden.jpg" alt="">
<div class="container">
<div class="carousel-caption">
<h1>Discover the hidden job market.</h1>
<p class="lead">70% of jobs are never listed <em>anywhere</em>. Learn how to find them, even in a tight market.</p>
<a class="btn btn-large btn-primary" href="#hiddenjobs">Learn more</a>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">›</a>
</div><!-- /.carousel -->
</div><!-- Home anchor -->
<!-- Headline ----------------------------------------------------------->
<div class="container">
<div class="row-fluid">
<div class="span12">
<div class="top-headline">
<p>You invested in an education. Now invest in your career.</p>
</div>
</div>
</div>
</div><!-- container -->
<!-- More Section ----------------------------------------------------------->
<div class="container">
<div class="row-fluid">
<div class="span12">
<h2><span class="brand">College Career Bootcamp</span> is a three-hour intensive course for college students, teaching the most effective skills for finding internships and employment that are NOT taught in college.</h2>
<p class="lead">Our courses are held in beautiful Austin, Texas on Saturday mornings from 9 AM through noon.</p>
<a class="btn btn-large btn-success" href="#register">See the schedule <i class="icon-calendar"></i></a>
</div>
</div>
</div><!-- container -->
<!-- What's Covered Section -------------------------------------------------->
<div class="container marketing whatscovered">
<a class="anchorfix" name="covered"> </a>
<h1>What's Covered?</h1>
<p class="lead">Our three-hour intensive course focuses on the modern tactics and execution of a job search with the goal of <span style="color:black;">finding internships and gainful employment after college graduation</span>.<p>
<p class="lead">You will learn:</p>
<a class="anchorfix" name="employers"> </a>
<div class="row-fluid">
<div class="span3">
<img class="img-circle" src="/img/business-people1.jpg" data-src="/js/holder.js/140x140">
</div>
<div class="span9">
<h2>Attract employers to knock on your door.</h2>
<p class="lead">Many employers begin to recruit hiring candidates as early as the FRESHMAN YEAR. We will teach how to develop your professional online identity so you are found when they're looking.</p>
<p class="topicheader">Topics include:</p>
<ul class="topics">
<li>How to think like a recruiter and use that to your advantage</li>
<li>Tools for creating your professional online identity</li>
<li>Managing and cleaning up your online presence</li>
</ul>
<p><a class="btn btn-success" href="#register">Register »</a></p>
</div>
</div>
<a class="anchorfix" name="marketability"> </a>
<div class="row-fluid">
<div class="span3">
<img class="img-circle" src="/img/slides/slide-city.jpg" data-src="/js/holder.js/140x140">
</div>
<div class="span9">
<h2><em>Marketabilty</em>: Put your degree investment to work.</h2>
<p class="lead">Graduating with a degree no longer means you will be marketable. We teach how to assess the job market demands and make course corrections <em>before</em> graduation.</p>
<p class="topicheader">Topics include:</p>
<ul class="topics">
<li>Understand the job market in terms of <em>supply</em> and <em>demand</em></li>
<li>How to research the demand for your skills</li>
<li>How to have an insightful conversation with your advisors and professors to adjust your education as needed</li>
</ul>
<p><a class="btn btn-success" href="#register">Register »</a></p>
</div>
</div>
<a class="anchorfix" name="tools"> </a>
<div class="row-fluid">
<div class="span3">
<img class="img-circle" src="/img/tools.jpg" data-src="/js/holder.js/140x140">
</div>
<div class="span9">
<h2>Leverage tools for finding jobs in your major.</h2>
<p class="lead">The Internet is full of job search tools. We will teach you which ones to use for finding internships and jobs, and where employers are looking.</p>
<p class="topicheader">Topics include:</p>
<ul class="topics">
<li>Get the MOST out of the BEST tools available, often without paying a cent</li>
<li>How to spend 30 minutes a week in college to transform your long-term career</li>
<li>Why staying ORGANIZED is your best friend in a job search, and how to get (and stay) that way</li>
</ul>
<p><a class="btn btn-success" href="#register">Register »</a></p>
</div>
</div>
<a class="anchorfix" name="hiddenjobs"> </a>
<div class="row-fluid">
<div class="span3">
<img class="img-circle" src="/img/slides/slide-hidden.jpg" data-src="/js/holder.js/140x140">
</div>
<div class="span9">
<h2>Discover the <em>hidden job market</em>.</h2>
<p class="lead">It really exists: bona fide jobs that are never posted. Better yet, the ones found here are probably aligned with your passions.</p>
<p class="topicheader">Topics include:</p>
<ul class="topics">
<li>What professional networking IS and ISN'T</li>
<li>How and where to network online and face-to-face</li>
<li>Finding opportunities to get your foot in the door with an employer</li>
</ul>
<p><a class="btn btn-success" href="#register">Register »</a></p>
</div>
</div>
<div class="row-fluid">
<div class="span3">
<div style="text-align: center;">
<i class="icon-asterisk icon-4x"></i>
</div>
</div>
<div class="span9">
<h2>What is NOT covered?</h2>
<p class="lead"><span style="color: black;">Our primary goal is to equip you to find internships and gainful employment after college graduation.</span> Some career-oriented topics are outside of that scope, and we do not cover them. These include:</p>
<dl>
<dt>Discovering your career direction (<em>"Should I be a doctor, lawyer, or undertaker?"</em>)</dt>
<dd>This topic is introspective in nature, and often better understood through the college experience or career coaching.</dd>
<dt>Resume writing and interview skills</dt>
<dd>These skills are readily learned through most college career services departments.</dd>
</dl>
</div>
</div>
</div><!-- container -->
<!-- About Section ---------------------------------------------------------->
<div class="container marketing">
<a class="anchorfix" name="about"> </a>
<h1>Who we are</h1>
<div class="row-fluid">
<div class="span3">
<img class="img-circle" src="/img/mg_headshot.jpg" data-src="/js/holder.js/140x140">
</div>
<div class="span9">
<h2>Matt Genovese, Founder</h2>
<p class="lead">Matt Genovese is an engineer and twelve-year veteran of the semiconductor industry, a software developer, a self-taught web designer, and founder of Door64 - Austin's largest business networking organization serving over 30,000 members.</p>
<p class="lead">Through Door64 he produced over one hundred networking events, job fairs, and other targeted engagements that helped Austin-area professionals achieve employment and companies make successful hires. His experiences indicated that job search skills should be learned early so students are prepared and can make "course-corrections" as necessary during college...instead of graduating without a job and/or realizing their newly-acquired skills are not marketable.</p>
<p class="lead"><span style="color: black">Matt has a passion to help professionals and aspiring professionals alike to be successful in their careers.</span> He loves to teach, and is often asked to speak on topics like career management and conducting a job search. Read the <a href="http://www.statesman.com/news/technology/how-door64-became-an-austin-tech-hub/nRpXx/" target="_blank">recent article in the Austin American-Statesman</a> about Matt's work in Austin.</p>
<blockquote>
<p><i class="icon-quote-left"></i> Matt has developed an amazing organization which is one that I am still apart of today. I believe in networking and Matt truly represents the real meaning of networking and connecting people. He is passionate, caring and puts forth extensive energy to make sure his clients and attendees are taken care of. <i class="icon-quote-right"></i></p>
<small>Kevin T. · Austin, Texas</small>
</blockquote>
</div>
</div>
</div><!-- container -->
<!-- Register Section ---------------------------------------------------------->
<div class="container marketing">
<a class="anchorfix" name="register"> </a>
<h1>Course Registration</h1>
<div class="row-fluid">
<div class="span12">
<p class="lead">Register below and join us for our next three-hour intensive course for college students, teaching the most effective skills for finding internships and employment that are NOT taught in college.</p>
<p class="lead">Courses are centrally located in Austin, Texas, hosted at St. Edward's Professional Education Center [<a target="_blank" href="http://goo.gl/maps/43lgR">MAP</a>].</p>
<p><span style="text-decoration: underline;">Note</span>: Class sizes are restricted to no more than 15 students to foster an environment of interaction and group discussion.</p>
<div class="eventbrite_container">
<h2><i class="icon-calendar"></i> Saturday, February 2, 2013 · 9 AM — Noon</h2>
<!-- BEGIN Eventbrite Paste-in -->
<div style="width:100%; text-align:left;" ><iframe src="http://www.eventbrite.com/tickets-external?eid=5205000296&ref=etckt&v=2" frameborder="0" height="260" width="100%" vspace="0" hspace="0" marginheight="5" marginwidth="5" scrolling="auto" allowtransparency="true"></iframe><div style="font-family:Helvetica, Arial; font-size:10px; padding:5px 0 5px; margin:2px; width:100%; text-align:left;" ><a style="color:#ddd; text-decoration:none;" target="_blank" href="http://www.eventbrite.com/r/etckt">Sell Tickets Online</a> <span style="color:#ddd;">through</span> <a style="color:#ddd; text-decoration:none;" target="_blank" href="http://www.eventbrite.com?ref=etckt">Eventbrite</a></div></div>
<!-- END Eventbrite Paste-in -->
</div><!-- eventbrite_container -->
</div>
</div>
<!--
<div class="row-fluid">
<div class="span12">
<h2>We give back</h2>
<p class="lead">With a prior arrangement with your college organization, <span class="brand">College Career Bootcamp</span> will donate 15% of our profits to back to your group.</p>
<p class="lead"><a href="mailto:info@CollegeCareerBootcamp.com?subject=Partnership">Contact us</a> to discuss if you represent a Greek or similar college organization in the Central Texas area.
</div>
</div>
-->
</div><!-- container -->
<!-- MailChimp ---------------------------------------------------------------------->
<div class="container marketing">
<p class="lead" style="text-align: center;">
<a target="_blank" href="http://eepurl.com/tUldX"><i class="icon-envelope-alt"></i> Sign-up to get notified about new dates and courses!</a>
</p>
<p class="lead" style="text-align: center;">
(We promise not to SPAM you.)
</p>
</div><!-- container -->
<!-- FOOTER ----------------------------------------------------------------------->
<div class="container marketing">
<div class="brand brand-footer">
<p>You invested in an education. Now invest in your career.</p>
<p>www.CollegeCareerBootcamp.com</p>
</div>
<div style="margin-top: 40px;" class="fb-like" data-href="http://www.facebook.com/CollegeCareerBootcamp/" data-send="true" data-width="200" data-show-faces="false"></div>
<footer>
<p class="pull-right"><a href="#"><i class="icon-arrow-up"></i> Back to top</a></p>
<p>© 2013 College Career Bootcamp · Austin, Texas USA · † <>< · <a href="mailto:info@CollegeCareerBootcamp.com"><i class="icon-envelope"></i> Contact us</a> ·
<a target="_blank" href="http://facebook.com/CollegeCareerBootcamp"><i class="icon-facebook-sign"></i></a>
<a target="_blank" href="http://twiter.com/CollgeCareerBC"><i class="icon-twitter-sign"></i></a>
</p>
</footer>
</div><!-- container -->
<!-- Javascript
================================================== -->
<script src="/js/jquery.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script>
!function ($) {
$(function(){
// carousel demo
$('#myCarousel').carousel({interval: 10000
})
})
}(window.jQuery)
</script>
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36512332-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>