-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
68 lines (60 loc) · 2.39 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
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<script src="code.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Playpen+Sans">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
</head>
<body onLoad="onLoad()">
<div class="page-select">
<div class="toggleTheme">
<button onClick="toggleTheme()">
<img src="images/moonIcon.png" alt="" id="sunIcon">
<img src="images/sunIcon.png" alt="" id="moonIcon">
</button>
</div>
<div class="half-select">
<form action="index.html">
<button type="submit" class="select-button fadeDown">
<div class="centered-text">
<p class="select-button-text">Home</p>
</div>
</button>
</form><!--
--><form action="projects.html">
<button type="submit" class="select-button fadeDown" style="animation-delay: 0.5s;">
<div class="centered-text">
<p class="select-button-text">Projects</p>
</div>
</button>
</form><!--
--><form action="news.html">
<button type="submit" class="select-button fadeDown" style="animation-delay: 1s;">
<div class="centered-text">
<p class="select-button-text">News</p>
</div>
</button>
</form>
</div>
</div>
<div class="green-text">
<div class="fade-in-row">
<h1>Hi, this is page 404.</h1>
</div>
<div class="fade-in-row">
<h1>This means that you are in wrong place</h1>
</div>
<div class="fade-in-row">
<h1>If you think that you should not be here, please, report me how did you get on this page</h1>
</div>
<div class="fade-in-row">
<h1>You can change page in bar above</h1>
</div>
</div>
</body>
</html>