-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage3.html
89 lines (78 loc) · 2.81 KB
/
page3.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
<!DOCTYPE html>
<html>
<head>
<title>Submit a talk at IgniteXYZ</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
body {
min-height: 2000px;
}
.navbar-static-top {
margin-bottom: 19px;
}
.top-100 {
margin-top: 100px;
}
.navbar {
background-color: black;
}
.boxy {
background-color: #FFFFFF;
border: 1px solid #000000;
margin-bottom: 20px;
margin-top: 10px;
padding: 15px;
text-align: center;
}
</style>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<a class="navbar-brand" href="http://www.IgniteXYZ.com"><img src="CHANGE_ME.jpg" height="50px" alt="Ignite Sydney logo"/></a>
</div>
</div>
</div>
</div>
<div class="container top-100">
<div class="jumbotron">
<h1>What's different about Ignite?</h1>
<p>Your presentation needs to have:</p>
<div class="row">
<div class="col-md-4 boxy">
<h2>20 slides</h2>
<p>You'll need to keep them simple and get your message across quickly</p>
</div>
<div class="col-md-4 boxy">
<h2>15 sec timing</h2>
<p>You never touch the laptop - the slides will auto-advance relentlessly</p>
</div>
<div class="col-md-4 boxy">
<h2>5 mins total</h2>
<p>Your entire presentation lasts exactly 5 minutes - no more, no less</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>You can propose any topic that you think will be of interest to the general audience. We don't want anything too technical, as the audience is comprised of a broad mix of the public.</p>
<h2>No sales pitches</h2>
<p>We're adamant that we don't want sales pitches at IgniteXYZ.</p>
<p>Instead, we're looking for inspiring stories and ideas that get the audience excited about your topic.</p>
</div>
</div>
<p style="text-align: right;">
<a class="btn btn-lg btn-primary" href="GOOGLE_FORM_LINK" role="button">Submit your proposal!</a>
</p>
</div>
</div>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>