-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcareers.html
149 lines (126 loc) · 4.6 KB
/
careers.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
<!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>flizzet.careers</title>
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Black+Han+Sans|Lobster|Roboto|Abril+Fatface|Kreon" rel="stylesheet">
<link rel="stylesheet" href="assets/css/hamburgers.min.css">
<link rel="stylesheet" href="assets/css/spinloader.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/nav.css">
<link rel="stylesheet" href="assets/css/cooltable.css">
<link rel="stylesheet" href="assets/css/coolbuttons.css">
<link rel="stylesheet" href="assets/css/careers.css">
<link rel="stylesheet" href="assets/css/hamburgers.min.css">
<script
src="http://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="assets/js/nav.js"></script>
<script src="assets/js/background.js"></script>
<script src="assets/js/pagetransition.js"></script>
</head>
<body onunload="hideOverlay();">
<canvas id="background-canvas"></canvas>
<span class="overlay">
<div id="loader">
<div class="cssload-loader-container">
<span class="cssload-loader"><span class="cssload-loader-inner"></span></span>
</div>
</div>
</span>
<div id="main">
<div id="header">
<h4 class="top-header">Flizzet</h4>
<h1>Careers</h1>
<div class="sign-open">
HIRING
</div>
<p>We're looking for talented, hard working individuals to join the team.
If you feel you qualify to fill one of these open spots, send an email to
<a href="mailto:[email protected]" style="text-decoration: underline;">[email protected]</a>
including the following: Resume/Portfolio, Cover Letter, and any other
information that you feel represents your ability.</p>
</div>
<br>
<div class="container">
<table class="cooltable">
<thead>
<tr>
<th><h1>Position Title</h1></th>
<th><h1>Required Skillset</h1></th>
<th><h1>Location</h1></th>
</tr>
</thead>
<tbody>
<tr>
<td>Medium Game Developer</td>
<td>Unity</td>
<td>Seattle, Washington</td>
</tr>
<tr>
<td>Game Designer</td>
<td>Adobe Illustrator, Adobe Photoshop, GIMP, Inkscape</td>
<td>Seattle, Washington</td>
</tr>
<tr>
<td>Contract Game Tester</td>
<td>Game Quality Assurance</td>
<td>Any US Location</td>
</tr>
</tbody>
</table>
</div>
<br>
<div class="apply-button">
<a href="mailto:[email protected]">
<div class="button" >
<span class="button__mask"></span>
<span class="button__text">Apply now</span>
</div>
</a>
</div>
<br>
<br>
<br>
<!-- Vertical text piece -->
<div class="vertical-side-text">©
<script type="text/javascript">
document.write(new Date().getFullYear());
</script> - FLIZZET DIGITAL
</div>
</div>
<!-- Navbar -->
<div id="navbar">
<div class="navbar-content">
<ul>
<li><a onclick="closePage('index.html');" class="nav-link">
<span class="left-selector">[</span>Home<span class="right-selector">]</span>
</a></li>
<li><a onclick="closePage('about.html')" class="nav-link">
<span class="left-selector">[</span>About<span class="right-selector">]</span>
</a></li>
<li><a onclick="closePage('projects.html')" class="nav-link">
<span class="left-selector">[</span>Projects<span class="right-selector">]</span>
</a></li>
<li><a class="nav-link active">
<span class="left-selector">[</span>Careers<span class="right-selector">]</span>
</a></li>
<li><a onclick="closePage('contact.html')" class="nav-link">
<span class="left-selector">[</span>Contact<span class="right-selector">]</span>
</a></li>
</ul>
</div>
</div>
<!-- Nav -->
<button class="nav-button hamburger hamburger--3dxy" type="button" onclick="openNav();">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
</body>
</html>