-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·86 lines (76 loc) · 2.95 KB
/
index.html
File metadata and controls
executable file
·86 lines (76 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./dist/style.css">
<title>404 Page</title>
</head>
<body>
<!-- partial:index.partial.html -->
<!-- About -->
<div class="about">
<a class="bg_links social portfolio" href="#" target="_blank"><span class="icon"></span></a>
<a class="bg_links social dribbble" href="#" target="_blank"><span class="icon"></span></a>
<a class="bg_links social linkedin" href="#" target="_blank"><span class="icon"></span></a>
<a class="bg_links logo"></a>
</div>
<!-- End About -->
<!-- Navbar -->
<nav>
<div class="menu">
<p class="website_name">LOGO</p>
<div class="menu_links">
<a href="" class="link">about</a>
<a href="" class="link">projects</a>
<a href="" class="link">contacts</a>
</div>
<div class="menu_icon">
<span class="icon"></span>
</div>
</div>
</nav>
<!-- End Navbar-->
<!-- Wrapper -->
<section id="wrapper" class="wrapper">
<div id="container" class="container">
<div id="scene" class="scene" data-hover-only="false">
<div class="circle" data-depth="1.2"></div>
<div class="one" data-depth="0.9">
<div id="content" class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<div class="two" data-depth="0.60">
<div id="content" class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<div class="three" data-depth="0.40">
<div id="content" class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<p id="p404" class="p404" data-depth="0.50">404</p>
<p id="p404" class="p404" data-depth="0.10">404</p>
</div>
<div id="text" class="text">
<article id="info" class="info">
<p>Uh oh! Looks like you got lost. <br>Go back to the homepage if you dare!</p>
<button>i dare!</button>
</article>
</div>
</div>
</section>
<!-- End Wrapper -->
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/parallax/3.1.0/parallax.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="./dist/script.js"></script>
</body>
</html>