-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.html
26 lines (26 loc) · 947 Bytes
/
category.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SSCIT CYBER ARENA - Category</title>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/category-style.css">
</head>
<body>
<div class="container">
<header>
<h1 class="glitch" data-text="Category">Category</h1>
</header>
<main id="content">
<!-- Content will be dynamically loaded here -->
</main>
<footer>
<a href="learn-more.html" class="button">Back to Categories</a>
<a href="index.html" class="button">Home</a>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/2.0.3/marked.min.js"></script>
<script src="assets/category-script.js"></script>
</body>
</html>