-
Notifications
You must be signed in to change notification settings - Fork 1
/
register.html
152 lines (150 loc) · 5.67 KB
/
register.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Animarathon 2022</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css"
/>
<script
defer
src="https://use.fontawesome.com/releases/v5.14.0/js/all.js"
></script>
</head>
<body>
<nav class="navbar" role="navigation">
<div class="navbar-brand">
<a class="navbar-item" href="./index.html">
<div class="column">
<section class="section">
<div class="container has-text-grey-darker">
<h1 class="title">Animarathon 2022</h1>
<h2 class="subtitle">Anime Convention in Northwest Ohio</h2>
</div>
<nav>
<a class="panel-block" href="https://www.bgsu.edu/coronavirus.html">
<span class="panel-icon"><i class="fas fa-info-circle" aria-hidden="true"></i></span>
BGSU COVID-19 Information
</a>
<a class="panel-block" href="https://www.facebook.com/Animarathon/">
<span class="panel-icon"><i class="fab fa-facebook" aria-hidden="true"></i></span>
Facebook
</a>
<a class="panel-block" href="https://discord.gg/PKz6KWd">
<span class="panel-icon"><i class="fab fa-discord" aria-hidden="true"></i></span>
Discord
</a>
<a class="panel-block" href="mailto:ano.animarathon@gmail.com">
<span class="panel-icon"><i class="fas fa-envelope-open-text" aria-hidden="true"></i></span>
E-Mail
</a>
</nav>
</section>
</div>
</a>
</div>
<img
src="./media/nonfree/2021banner.jpg"
alt="Animarathon Banner"
style="width:100%;"
/>
</nav>
<br />
<main class="container">
<div class="field has-addons">
<p class="control">
<a href="https://animarathon.com">
<button class="button is-link is-outlined">
<span class="icon"><i class="fas fa-magic"></i></span>
<span> Main </span>
</button>
</a>
</p>
<p class="control">
<a href="https://animarathon.com/register">
<button class="button is-link is-outlined">
<span class="icon"><i class="fas fa-magic"></i></span>
<span> Vendors,Artists, and Panelists </span>
</button>
</a>
</p>
<p class="control">
<a href="https://animarathon.com/special-guests">
<button class="button is-link is-outlined">
<span class="icon"><i class="fas fa-magic"></i></span>
<span> Special Guests</span>
</button>
</a>
</p>
<p class="control">
<a href="https://Animarathon.com/rules">
<button class="button is-link is-outlined">
<span class="icon"><i class="fas fa-magic"></i></span>
<span> Rules for Animarathon</span>
</button>
</a>
</p>
<p class="control">
<a href="https://animarathon.com/cosplay">
<button class="button is-link is-outlined">
<span class="icon"><i class="fas fa-magic"></i></span>
<span> Cosplay Competition</span>
</button>
</a>
</p>
<p class="control">
<a href="https://Animarathon.com/panels">
<button class="button is-link is-outlined">
<span class="icon"><i class="fas fa-magic"></i></span>
<span> Panels and Map</span>
</button>
</a>
</p>
</div>
<div class="columns">
<div class="column is-1"></div>
<!--Horizontal Spacer-->
<div class="column">
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box">
<center>
<p class="title">Vendor, Artist, and Panelist Registration</p>
</center>
<center>
<b>Vendors and Artists (Closed!)</b>
<br />
<button>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScz2VKUXppu25veU0z8ODeitMV7AJ76RPCpxwxADKIriz9Zdw/viewform?usp=sf_link"><b>Click here to apply for Vendor/Artist</b></a>
</button>
<br />
<b>Panelists (closing mid February)<b>
<br />
<button>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeDygL_hu1EeV30xcUa5RmZhfYMeXnHsaQKQmKTS25T3vgT_w/viewform?usp=sf_link"><b>Click here to apply for Panels</b></a>
</button>
</center>
</div>
</div>
</div>
</div>
<div class="column is-1"></div>
<!--Horizontal Spacer-->
</div>
<br />
<footer class="footer">
<div class="content has-text-centered">
<p>
Animarathon 2022 is a student run Anime Convention at Bowling Green
State University in Bowling Green, Ohio.
</p>
<p>
Proudly powered by Open Source software including
<a href="https://bulma.io/">Bulma CSS</a>.
</p>
</div>
</footer>
</body>
</html>