This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidequest.html
139 lines (123 loc) · 5.68 KB
/
sidequest.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic -->
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<!-- Mobile Metas -->
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/>
<!-- Site Metas -->
<link href="Website/images/Favicons/Stock.Increasing.Favicon.png" rel="shortcut icon" type="">
<link href="Website/css/favicon.css" rel="stylesheet" type="text/css"/>
<script src="Website/js/favicon+urlpretty.js"></script>
<meta content="SideQuest page for the Wesgreen 2024 Hackathon" name="description">
<meta content="Wesgreen Hackathon, SideQuest, Game Development, Web Development, Junior, Senior, Hackathon 2024, Wesgreen International School, Muwailah Hackathon, Student Coding Event, Programming Contest, Tech Competition"
name="keywords">
<title>WES:HACK - SideQuest</title>
<!-- Bootstrap core CSS -->
<link href="Website/css/bootstrap.css" rel="stylesheet" type="text/css"/>
<!-- Fonts style -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
<!-- Font awesome style -->
<link href="Website/css/font-awesome.min.css" rel="stylesheet"/>
<!-- Custom styles for this template -->
<link href="Website/css/style.css" rel="stylesheet"/>
<!-- Responsive style -->
<link href="Website/css/responsive.css" rel="stylesheet"/>
<link href="Website/css/sidequest.css" rel="stylesheet"/>
</head>
<body class="sub_page">
<div class="hero_area">
<div class="hero_bg_box">
<div class="bg_img_box">
<img alt="" src="Website/images/Background.png">
</div>
</div>
<!-- Header Section -->
<header class="header_section">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg custom_nav-container ">
<a class="navbar-brand" href="index.html">
<span>
WES:HACK 24
</span>
</a>
<button aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"
class="navbar-toggler" data-target="#navbarSupportedContent"
data-toggle="collapse" type="button">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="prizes.html">Prizes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="venue.html">Venue</a>
</li>
<li class="nav-item">
<a class="nav-link" href="schedule.html">Schedule</a>
</li>
<li class="nav-item">
<a class="nav-link" href="sponsors.html">Sponsors</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq.html">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="volunteers.html">Volunteers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="rules.html">Rules</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- End Header Section -->
</div>
<!-- SideQuest Section -->
<section class="sidequest_section">
<div class="container">
<div class="heading_center">
<br>
<div style="text-align: center;">
<h2>
SideQuest <span>Challenges</span>
</h2>
<p>
Choose your challenge and start your journey!
</p>
<p>
It's time for the side-quests! Choose your challenge and start your journey.
You can choose between Game Development, Web Development Junior,
and Web Development Senior.
<br>
Each challenge has its own set of rules and guidelines.
Make sure to read them carefully before starting your journey.
<br>
Good luck!
</p>
</div>
</div>
<div class="button_container">
<a href="https://github.com/Wes-Hacks/SideQuest_GameDev" class="btn btn-primary">Game Development</a>
<a href="https://github.com/Wes-Hacks/SideQuest_WebDev_Junior" class="btn btn-primary">Web Development Junior</a>
<a href="https://github.com/Wes-Hacks/SideQuest_WebDev_Senior" class="btn btn-primary">Web Development Senior</a>
</div>
</div>
</section>
<!-- End SideQuest Section -->
<!-- JavaScript Files (Make sure to include them in this order) -->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Popper.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.6/umd/popper.min.js"></script>
<!-- Bootstrap JavaScript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>