-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevs.html
More file actions
148 lines (148 loc) · 5.45 KB
/
devs.html
File metadata and controls
148 lines (148 loc) · 5.45 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="keywords"
content="Era Guessr, Era, History, Guessr, Game, Guesser, LeechLab"
/>
<meta
name="Era Guessr"
content="Download this app and play a game of history! Guess the year of five photos correctly to advance in the leaderboards! Try different game modes and unlock new skins!"
/>
<link rel="stylesheet" href="css/devs.css" />
<link rel="stylesheet" href="css/navbar.css" />
<title>Era Guessr | History Reimagined</title>
<link rel="icon" type="image/x-icon" href="/images/AboutIcon.svg" />
</head>
<body>
<div>
<nav>
<ul>
<li>
<a id="About" onclick='changePage("index.html")'
><div class="nav_grid">
<img
class="icon"
src="images/AboutIcon.svg"
alt="About"
/><navtext>ABOUT</navtext>
</div></a
>
</li>
<li>
<a id="Developers" onclick='changePage("devs.html")'
><div class="nav_grid">
<img class="icon" src="images/DevIcon.svg" alt="Devs" />
<navtext>DEVELOPERS</navtext>
</div></a
>
</li>
<li>
<a onclick='changePage("community.html")'
><div class="nav_grid">
<img
class="icon"
src="images/CommIcon.svg"
alt="Community"
/><navtext>COMMUNITY</navtext>
</div></a
>
</li>
<li style="float: right">
<a
href="https://play.google.com/store/apps/details?id=com.yellow63.eraguessr&pli=1"
><div class="nav_grid">
<img
class="icon"
src="images/DownloadIcon.svg"
alt="Download"
/><navtext>DOWNLOAD</navtext>
</div></a
>
</li>
<li>
<a onclick='changePage("game.html")'
><div class="nav_grid">
<img
class="icon"
src="images/CompIcon.svg"
alt="ComputerMode"
/><navtext>WEB MODE</navtext>
</div></a
>
</li>
</ul>
</nav>
</div>
<div class="Title">
<div class="container">
<h1>MEET THE DEVELOPERS!</h1>
<img class="devIcon" src="images/Nando.svg" alt="Nando" />
<h2 class="nando">NANDO</h2>
<h4>
This developer basically created the whole game, from the character
design to the back end server program. Even this website is made by
him (weird how he's writing in third person).<br /><br />
Nando loves to create games on multiple softwares. He knows
Java/JavaScript, Python, C#/C++, and more!<br /><br />[Other hobbies:
Music Design, Gaming]
</h4>
<img class="negdevIcon" src="images/Brandon.svg" alt="Brandon" />
<h2 class="brandon">BRANDON</h2>
<h4>
This developer invented the game idea, coming up with this game in a
history classroom (perfect environment)! He is the main director and
basically lead the game to succsess. He is also the marketer!<br /><br />
Brandon is intrigued by history, especially World War 2 and it's
battles. He mastered the concepts of college level history at a young
age!
<br /><br />[Other hobbies: Baseball, Political Science]
</h4>
<div class="three_grid">
<div>
<img
class="negdevIcon miniDev2"
src="images/Ricky.svg"
alt="Ricky"
/>
<h2 class="ricky">RICKY</h2>
<h4>Helped collect images for the Era Guessr database!</h4>
</div>
<div>
<img class="devIcon miniDev" src="images/David.svg" alt="David" />
<h2 class="dave">DAVE</h2>
<h4>Tested the game, found bugs, and gave feedback!</h4>
</div>
<div>
<img class="negdevIcon miniDev2" src="images/Nick.svg" alt="Nick" />
<h2 class="nick">NICK</h2>
<h4>Moral Support! :)</h4>
</div>
</div>
</div>
</div>
<div class="end">
<div class="container">
<p>
Era Guessr is created for enjoying history through images.<br />All of
these images are not owned or affiliated by us in anyway. These images
were gathered from the internet and stored onto a database.<br /><br /><br />If
there is an issue/bug with the website:<br /><br /><a
href="https://github.com/LeeechLabStudios/Era-Guessr"
>Submit an issue in our Github Repository!</a
><br /><br />or contact us with our email address:
eraguessr@gmail.com.<br /><br /><br />For more information, read our
<a onclick='changePage("privacyp.html")' href="">Privacy Policy</a>.
</p>
<h3>
<br /><br /><br />Created by LeechLab. All Rights Reserved.<br />version
2.0.5 (April 2024)<br /><br />
</h3>
<img class="endImage" src="images/Rocket.svg" />
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>