This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (76 loc) · 2.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>
RevolutionConf 2019 - June 6th and 7th, 2019 - Virginia Beach, VA
</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<style>
.revconflogo {
width: 300px;
height: 300px;
}
.imgContainer {
margin-left: auto;
margin-right: auto;
width: 300px;
height: 300px;
}
h1 {
text-align: center;
}
.centerIt {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm">
<div class="imgContainer">
<img
src="/images/revconflogo.png"
alt="RevolutionConf"
class="revconflogo"
/>
</div>
<div class="centerIt">
<h1>RevolutionConf 2019</h1>
<p>June 6-7th, 2019 - Virginia Beach, VA</p>
<em>(The real site is coming soon)</em>
</div>
</div>
</div>
<div class="row">
<div class="col-sm centerIt">
<a href="https://cfp.revolutionconf.com"
>Call for Speakers (Open until Jan 18th)</a
>
</div>
<div class="col-sm centerIt">
<a href="https://tickets.revolutionconf.com">Tickets on Sale NOW!</a>
</div>
<div class="col-sm centerIt">
<a href="mailto:[email protected]">Sponsorship</a>
</div>
</div>
<div class="row"> </div>
<div class="row">
<div class="col-sm-4 offset-sm-4 centerIt">
<span title="DNS is broke right now - we're fixing it">2018 Site</span> |
<a href="https://2017.revolutionconf.com">2017 Site</a> |
<a href="https://2016.revolutionconf.com">2016 Site</a>
</div>
</div>
</div>
</body>
</html>