-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
91 lines (82 loc) · 3.45 KB
/
404.html
File metadata and controls
91 lines (82 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | StudyFlow</title>
<link rel="stylesheet" href="css/style-utils.css">
<link rel="stylesheet" href="css/mobile.css">
</head>
<body>
<!-- Navigation -->
<nav class="nav">
<div class="nav-container">
<a href="index.html" class="nav-brand">
<div class="nav-logo">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20"/>
</svg>
</div>
<span class="nav-title">StudyFlow</span>
</a>
<a href="index.html" class="nav-link">Home</a>
</div>
</nav>
<!-- 404 Content -->
<div class="notfound-container">
<!-- Floating background blobs -->
<div class="floating-elements">
<div class="float-item float-1"></div>
<div class="float-item float-2"></div>
<div class="float-item float-3"></div>
<div class="float-item float-4"></div>
<div class="float-item float-5"></div>
</div>
<!-- Glass card -->
<div class="content-card">
<!-- Animated 404 with bouncing book -->
<div class="error-visual">
<div class="number-container">
<span class="digit">4</span>
<div class="book-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20"/>
</svg>
<div class="book-glow"></div>
</div>
<span class="digit">4</span>
</div>
</div>
<h1 class="error-title">Page Not Found</h1>
<p class="error-description">
Oops! Looks like this page took a study break and never came back.
The page you're looking for doesn't exist or has been moved.
</p>
<div class="action-buttons">
<button class="btn btn-primary" onclick="history.back()">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="19" x2="5" y1="12" y2="12"/><polyline points="12 19 5 12 12 5"/>
</svg>
Go Back
</button>
<a href="index.html" class="btn btn-outline">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><polyline points="9 22 9 12 15 12 15 22"/>
</svg>
Return Home
</a>
</div>
<div class="helpful-links">
<p class="links-title">Popular pages:</p>
<div class="links-grid">
<a href="index.html" class="quick-link">Home</a>
<a href="pricing.html" class="quick-link">Pricing</a>
<a href="auth.html" class="quick-link">Sign In</a>
<a href="dashboard.html" class="quick-link">Dashboard</a>
</div>
</div>
</div>
</div>
<script src="js/mobile-nav.js"></script>
</body>
</html>