-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
163 lines (141 loc) · 5.61 KB
/
404.html
File metadata and controls
163 lines (141 loc) · 5.61 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
<head>
<title>404 File Not Found!</title>
<link rel="icon" type="image/x-icon" href="http://127.0.0.1:5500/Coco Icon/Old Coco Icon.ico">
<link href="http://127.0.0.1:5500/CSS/homepage.css" rel="stylesheet">
<link href="http://127.0.0.1:5500/CSS/header.css" rel="stylesheet">
<link href="https://vjs.zencdn.net/8.16.1/video-js.css" rel="stylesheet" />
<link href="http://127.0.0.1:5500/CSS/general.css" rel="stylesheet">
<link href="http://127.0.0.1:5500/CSS/general.css" rel="stylesheet">
<link href="http://127.0.0.1:5500/CSS/header.css" rel="stylesheet">
<link href="http://127.0.0.1:5500/CSS/teapot.css" rel="stylesheet">
<link href="http://127.0.0.1:5500/CSS/download.css" rel="stylesheet">
<style>
body {
background-color: grey;
font-family: Arial, Helvetica, sans-serif;
background-image: url("Images/Background.png");
}
#webpage {
position: absolute;
margin-top: 50px;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
}
.products {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
row-gap: 12px;
column-gap: 12px;
margin-top: 30px;
margin-left: 12px;
margin-right: 12px;
bottom: 0;
}
/*#header {}*/
.header {
display: flex;
flex: 1;
height: 44px;
position: fixed;
z-index: 100;
margin-bottom: 50px;
background-color: lightgrey;
top: 0;
right: 0;
left: 0;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.418);
padding-top: 12px;
padding-left: 12px;
padding-bottom: 12px;
padding-right: 12px;
}
.box-product {
background-color: rgb(247, 243, 243);
white-space: nowrap;
/* grid-template-columns: 100px 1fr; */
/* width: 300px;
height: 300px; */
padding: 30px 3px 30px 40px;
/* display: grid; */
height: 100%;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.418);
}
#Coco {
z-index: 101;
height: 38px;
padding-bottom: -20px;
padding-right: -100px;
opacity: 1;
transition: opacity 1.0s;
transition: height 1.0s;
}
#Coco:hover {
opacity: 0.10;
cursor: pointer;
height: 50px;
transition: opacity 1.0s;
transition: height 1.0s;
}
.product-img {
height: 120px;
width: 120px;
margin-left: 40px;
max-width: 100%;
}
.Announcement {
background-color: wheat;
margin-top: 100px;
margin-bottom: 50px;
}
</style>
</head>
<body style="background-image: url(../../Images/Background.png);">
<div id="webpage">
<div id="header">
<header class="header">
<!--<button onclick="cocoSound();">Test</button>-->
<a href="http://127.0.0.1:5500/index.html"><img id="Coco" src="../../Coco.svg"
onmouseover="/* Aa */ const audio = new Audio('../../Coco.wav'); audio.play();/* Aa */ /* Aa * cocoSound();/* Aa */"></a>
<!--<select title="Bob">
<option selected value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>-->
<div class="left-header">
<div></div>
<a class="content-only-a" href="../../Games/">
<button class="special-button">Games</button>
</a>
<button class="special-button">Productivity</button>
<button class="special-button">Creation</button>
<button class="special-button">Develop</button>
</div>
<div id="user-controls" class="right-header">
<button id="sign-in" class="special-button header-right">Sign In</button>
<button class="special-button">Create Account</button>
</div>
</header>
</div>
<div id="container">
<div class="product-box" style="display: grid; align-items: center; justify-content: center; place-items: center;">
<h1>Oh no! 404!</h1>
<h4>Oof! Yikes! Looks like we have absolutely no idea what you just put as a URL; but this page does not exist.</h4>
<div class="circle grey-border" style="width: 100px; height: 100px; padding: 10px; border-width: 10px;"><img height="100px" src="http://127.0.0.1:5500/Coco Icon/Coco The Coconut Dead Gray.png"></div>
<p>How about we go back <a href="http://127.0.0.1:5500/">home</a>?</p>
</div>
<script src="http://127.0.0.1:5500/Scripts/user.js"></script>
<script src="http://127.0.0.1:5500/Ambler.mp3Sound.js"></script>
</body>
</html>