-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (64 loc) · 3.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bungee+Spice&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="assets/favicon.ico">
<meta charset="utf-8" />
<meta name="description" content="Rally-X Styled Maze Game In JS With Waffles">
<meta name="keywords" content="JavaScript, Waffles, Driving, Puzzle, Game">
<meta property="og:image" content="https://rally.medievalapple.net/assets/player/player.png">
<link rel="manifest" href="rally.webmanifest"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rally Waffle JS</title>
</head>
<body>
<div class="login">
<p style="font-size: xx-large; margin-bottom: 10%;">Rally Waffle JS</p>
<p>Enter Initials</p><br>
<input title="Enter Your Initials" type="text" placeholder="AAA" maxlength="3" id="nameInput"><br><br>
<button title="Start The Game" onclick="startGame()">Start</button><br><br>
<p style="margin: 0;">Upload High Scores <input title="Upload Your Scores To The Worldwide Leaderboard" id="uploadCheck" type="checkbox"></p><br>
<a class="github" title="Rally Waffle JS - Github" href="https://github.com/MedievalApple/Rally-Waffle-JS">
<svg aria-hidden="true" height="34" viewBox="0 0 16 16" version="1.1" width="34">
<path
d="M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z">
</path>
</svg>
</a>
<a style="margin-left: 5%; margin-right: 5;"></a>
<a title="About Page" href="/about" style="text-decoration: none;">
<img style="image-rendering: pixelated;" height="34px" width="34px" src="/assets/player/player.png">
</a>
<div class="dropdown" title="Change Background">
<img src="/assets/map/gray.png" id="dropdown-image" width="25px" height="25px">
<div class="dropdown-content">
<div>
<input title="No Background" type="radio" onclick="bgNone()" id="none" name="bg" value="none"/>
<label for="none">None</label>
</div>
<div>
<input title="Grass Background" type="radio" onclick="bgGrass()" id="grass" name="bg" value="grass" />
<label for="grass">Grass</label>
</div>
<div>
<input title="City Background" type="radio" onclick="bgCity()" id="city" name="bg" value="city" />
<label for="city">City</label>
</div>
<div>
<input title="Rainbow Background" type="radio" onclick="bgRainbow()" id="rainbow" name="bg" value="rainbow" />
<label for="rainbow">Rainbow</label>
</div>
<div>
<input title="Apply To All Backgrounds" type="checkbox" id="bgCheck" onclick="bgDisable()"/>
<label for="checkbox">Apply Everywhere</label>
</div>
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>