-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
52 lines (48 loc) · 1.93 KB
/
404.html
File metadata and controls
52 lines (48 loc) · 1.93 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
<!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</title>
<link rel="icon" href="/internet_connection_wiz-0.png">
<link rel="stylesheet" href="/site.css">
</head>
<body>
<nav class="site-nav">
<div class="nav-inner">
<a href="/" class="logo"><span class="win">▦</span> BrowserBox</a>
<ul class="nav-links">
<li><a href="/demo">Demo</a></li>
<li><a href="/pricing/">Pricing</a></li>
<li><a href="/api/">API</a></li>
</ul>
</div>
</nav>
<div class="legal-page" style="text-align:center;padding-top:4rem;">
<h1 style="font-size:4rem;margin-bottom:0.5rem;">404</h1>
<p style="font-size:1.3rem;color:var(--text-muted);margin-bottom:2rem;">This page could not be found.</p>
<div style="font-family:monospace;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);display:inline-block;padding:1.5rem 2.5rem;margin-bottom:2rem;text-align:left;">
<p style="color:var(--text-muted);margin-bottom:0.5rem;">A fatal exception 0E has occurred at 0028:C0034B03</p>
<p style="margin-bottom:0.5rem;">The current page will be terminated.</p>
<p style="color:var(--text-muted);">Press any link to continue.</p>
</div>
<div style="margin-top:1.5rem;">
<a href="/" class="btn btn-primary" style="margin-right:1rem;">Home</a>
<a href="/demo" class="btn btn-outline">Try the Demo</a>
</div>
</div>
<footer class="site-footer">
<div class="footer-inner">
<ul class="footer-links">
<li><a href="/">Home</a></li>
<li><a href="/demo">Demo</a></li>
<li><a href="/pricing/">Pricing</a></li>
<li><a href="/api/">API</a></li>
<li><a href="/terms/">Terms</a></li>
<li><a href="/privacy/">Privacy</a></li>
</ul>
<p class="copyright">© 2024–2026 DOSAYGO Corporation. All rights reserved.</p>
</div>
</footer>
</body>
</html>