-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.86 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<title>Main Menu | TF2 Tools</title>
</head>
<body class="main_menu">
<section>
<h1>TEAM<i class="logo"></i>FORTRESS 2 TOOLS</h1>
<nav class="nav_main_menu">
<h2>DECALS</h2>
<button onclick="window.location.href='decals.html'"><i class="icon"></i> Decal Creator</button>
<button onclick= "window.location.href = 'colored_decal.html';"><i class="icon"></i> Apply colored Clan Pride/Photo Badge</button>
</nav>
<nav class="nav_main_menu">
<h2>Weapon Generators</h2>
<button onclick= "window.location.href = 'custom_weapon.html';"><i class="icon"></i> Custom Weapon Generator</button>
<button onclick= "window.location.href = 'random_weapon.html';"><i class="icon"></i> Random Weapon Generator</button>
</nav>
<nav class="nav_main_menu">
<h2>OTHER TOOLS</h2>
<button onclick= "window.location.href = 'calculator.html';"><i class="icon"></i> Calculator (WIP)</button>
<button onclick= "window.location.href = 'ugc.html';"><i class="icon"></i> UGC Converter</button>
</nav>
</section>
<div class="menu_tab">
<button id="button_alert" class="tab_item"></button>
<button id="button_motd" class="tab_item"></button>
</div>
<footer id="footer"></footer>
<div id="optionsOverlay"></div>
<script src="js/components.js"></script>
<script src="js/backgrounds.js"></script>
</body>
</html>