-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
58 lines (58 loc) · 2.09 KB
/
support.html
File metadata and controls
58 lines (58 loc) · 2.09 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
<!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="sstyles/support.css">
<link rel="icon" href="https://glitchycatstudios.github.io/favicon.ico" type="image/x-icon">
<title>Support</title>
</head>
<body>
<big>
<nav>
<ul>
<li><img src="sstyles/img/Logo GCS groter.png"></li>
<li><a><button class="active">Home</button></a></li>
<li><a href="bh/bh.html"><button>Blooket Hacker</button></a></li>
<li><a href="cotm/cotm.html"><button>Cat of the moment</button></a></li>
<li><a href="glitchycatstudios.github.io"><button>To Main Website</button></a></li>
</ul>
</nav>
</big>
<img class="smallimg" src="sstyles/img/Logo GCS groter.png">
<div class="burger-menu" onclick="toggleMenu()">
☰
</div>
<small id="small-menu">
<nav>
<ul>
<li><a><button class="active">Home</button></a></li>
<li><a href="bh/bh.html"><button>Blooket Hacker</button></a></li>
<li><a href="cotm/cotm.html"><button>Cat of the moment</button></a></li>
<li><a href="glitchycatstudios.github.io"><button>To Main Website</button></a></li>
</ul>
</nav>
</small>
<script>
function toggleMenu() {
var menu = document.getElementById("small-menu");
if (menu.style.display === "block") {
menu.style.display = "none";
} else {
menu.style.display = "block";
}
}
</script>
<div class="container">
<h1>Support</h1>
</div>
<div class="container1">
<h1>blooket Hacker support</h1>
<a href="bh/bh.html"><button>To Blooket Hacker Support -></button></a>
</div>
<div class="container2">
<h1>Cat of the moment support.</h1>
<a href="cotm/cotm.html"><button>To Cat of the moment support -></button></a>
</div>
</body>
</html>