-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
46 lines (45 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heist Practice</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/home.css">
</head>
<body>
<section id='selection'>
<h1>NoPixel Bank<br>Heist Games</h1>
<hr>
<h3>Choose the minigame</h3>
<hr>
<div class='selectionMenu'>
<form action='lockpick.html'>
<input type="submit" value="Lockpick"/>
</form>
<form action='bank_hack.html'>
<input type="submit" value="Bank Hack"/>
</form>
<form action='vault_hack.html'>
<input type="submit" value="Vault Hack"/>
</form>
<form action='custom_hack.html'>
<input type="submit" value="Custom Hack"/>
</form>
<form action='vault_thermite.html'>
<input type="submit" value="Vault Thermite"/>
</form>
<form action='jewelry_thermite.html'>
<input type="submit" value="Jewelry Thermite"/>
</form>
<form action='pc_usb_hack.html'>
<input type="submit" value="PC USB Hack"/>
</form>
<form action='fauxpixel.html'>
<input type="submit" value="FauxPixel Games"/>
</form>
</div>
<a class="repoLink" href="https://fauxpixel.com/tutorials/" target='_blank' rel='noopener'>Tutorials Here</a>
</section>
</body>
</html>