-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
114 lines (103 loc) · 3.85 KB
/
404.html
File metadata and controls
114 lines (103 loc) · 3.85 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Language" content="en-us" />
<meta name="author" content="Subhang Mokkarala">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>404 - Page Not Found</title>
<link rel="icon" type="image/x-icon" href="/images/Team_logo.png">
<!-- Your CSS links -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link href="https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" />
<link href="css/responsive.css" rel="stylesheet" />
</head>
<body class="sub_page">
<div class="hero_area">
<!-- Your header section -->
<header class="header_section">
<div class="container">
<nav class="navbar navbar-expand-lg custom_nav-container ">
<a class="navbar-brand" href="index.html">
<img src="icons/Transparent/ohhh.gif" alt="">
<span>
TEach A Machine
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="s-1"> </span>
<span class="s-2"> </span>
<span class="s-3"> </span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="d-flex ml-auto flex-column flex-lg-row align-items-center">
<ul class="navbar-nav ">
<li class="nav-item ">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html"> About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="404.html"> Events </a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html"> Blog </a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact </a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<!-- end header section -->
</div>
<!-- 404 content section -->
<section class="404_content_section layout_padding">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="content_box">
<h1><b>404</b></h1>
<h3> <b>Oops! Page not found</b></h3>
<p>The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
<section class=" slider_section ">
<div class="col-md-6 ">
<div class="detail_box">
<a href="index.html" class=""> Return to Home</a>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</section>
<!-- end 404 content section -->
<!-- footer section -->
<footer class="container-fluid footer_section">
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-9 mx-auto">
<p>
© 2024 TEAM Club. All Rights Reserved.
</p>
</div>
</div>
</div>
</footer>
<!-- end footer section -->
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="/js/404-no-highlight.js"></script>
</body>
</html>