forked from TG1999/converge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
59 lines (53 loc) · 1.85 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="./assets/OLogo3d-cropped.png" type="image/gif" sizes="16x16">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Responsive Side Menu</title>
<link rel="stylesheet" href="./styles/404.css">
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
</head>
<body>
<div id="side-menu" class="side-nav">
<a onClick="closeSlideMenu()">
<img src="./assets/close.svg" class="close-btn" />
</a>
<a href="index.html#home" id="home-anchor" class="mt-5">HOME</a>
<a href="index.html#highlights" id="highlights-anchor">HIGHLIGHTS</a>
<a href="#" id="events-anchor">EVENTS</a>
<a href="#">PRONITES</a>
<a href="#" id="timeline-anchor">TIMELINE</a>
<a href="#">TEAM</a>
<a href="#">SPONSORS</a>
<a href="#">REACH US</a>
<a href="./register.html?q=camb">CAMPUS AMBASSADOR</a>
<div class="d-flex sidebar-social">
<a href="#"><img src="./assets/facebook-logo.svg"/></a>
<a href="#"><img src="./assets/instagram-logo.svg"/></a>
</div>
</div>
<div class="pt-5" id="home">
<nav class="top-bar">
<span class="open-slide">
<a onClick="openSlideMenu()">
<img id="menu-btn" src="assets/menu-button.svg" />
</a>
</span>
<div>
<img src="./assets/OLogo3d-cropped.png" alt="">
</div>
</nav>
</div>
<div class="content-wrapper">
<h1>404</h1>
<h2>We can't find the page you are looking for!</h2>
<button><a href="index.html">Return Home</a></button>
</div>
<script src="./scripts/index.js"></script>
</body>
</html>