-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path404.html
More file actions
82 lines (69 loc) · 2.14 KB
/
404.html
File metadata and controls
82 lines (69 loc) · 2.14 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
<!DOCTYPE html> <!-- Declares we're using HTML 5 [we're not strictly because we're using the "center," which is HTML 4]-->
<html lang='en'>
<head>
<title>236 Technoticks</title> <!--title and logo in the tab space-->
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<center>
<body style="background-color:#8ca7fa;"> <!-- Background color -->
<h1>404 error</h1>
<img src="Adobe Express 2025-01-25 15.34.05.gif" alt="404" width="500" height="333">
<h2> Water game! Water game!</h2>
<p>Use this box to search our site and see if you can find what you're looking for:</p>
<script async src="https://cse.google.com/cse.js?cx=8211a604c7f99444e">
</script>
<div class="gcse-search"></div>
<footer>
<!-- W3 schools code -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.fa {
padding: 20px;
font-size: 30px;
width: 30px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 50%;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: #3B5998;
color: white;
}
.fa-twitter {
background: #55ACEE;
color: white;
}
.fa-youtube {
background: #bb0000;
color: white;
}
.fa-instagram {
background: #fc03a1;
color: white;
}
.fa-pinterest {
background: #cb2027;
color: white;
}
.fa-flickr {
background: #f40083;
color: white;
}
</style>
<a href="https://www.facebook.com/FIRSTTeam236/" class="fa fa-facebook"></a>
<a href="https://x.com/technoticks236" class="fa fa-twitter"></a>
<a href="https://www.youtube.com/@thetechnoticks" class="fa fa-youtube"></a>
<a href="https://www.instagram.com/236technoticks/" class="fa fa-instagram"></a>
<a href="https://www.pinterest.com/team236/6" class="fa fa-pinterest"></a>
<!--<a href="#" class="fa fa-flickr"></a>-->
<p>Copyright © 2024-2025 Team 236 - TechnoTicks</p>
<p><a href="https://github.com/Team236/team236.github.io" target="_blank">GitHub Repository</a></p>
</footer>
</center>
</html>