-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
48 lines (48 loc) · 3.43 KB
/
404.html
File metadata and controls
48 lines (48 loc) · 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Page Not Found — ProScholarTools</title>
<meta name="robots" content="noindex,follow">
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='14' fill='%23d4a843'/%3E%3Ctext x='32' y='46' text-anchor='middle' font-size='36'%3E%F0%9F%8E%93%3C/text%3E%3C/svg%3E">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700;800&family=Mulish:wght@400;600&display=swap" rel="stylesheet">
<style>
:root{--bg:#0c1422;--gold:#d4a843;--gold2:#e8c86e;--tx:#ddd5be;--tx2:#9fb0cc;--brd:rgba(212,168,67,.18);--brd2:rgba(255,255,255,.07)}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:"Mulish",sans-serif;background:var(--bg);color:var(--tx);min-height:100vh;display:flex;align-items:center;justify-content:center;padding:2rem}
.wrap{text-align:center;max-width:560px}
.err-num{font-family:"Cormorant Garamond",serif;font-size:8rem;font-weight:800;color:var(--gold);line-height:1;opacity:.15;position:absolute;top:50%;left:50%;transform:translate(-50%,-60%);pointer-events:none;z-index:0}
.ic{font-size:3.5rem;margin-bottom:1rem;display:block;position:relative;z-index:1}
h1{font-family:"Cormorant Garamond",serif;font-size:2rem;font-weight:800;color:#fff;margin-bottom:.7rem;position:relative;z-index:1}
p{font-size:.88rem;color:var(--tx2);line-height:1.85;margin-bottom:1.5rem;position:relative;z-index:1}
.links{display:flex;flex-wrap:wrap;gap:.7rem;justify-content:center;position:relative;z-index:1}
.btn-p{background:linear-gradient(135deg,var(--gold),var(--gold2));color:#0c1422;padding:.6rem 1.4rem;border-radius:9px;text-decoration:none;font-weight:700;font-size:.85rem}
.btn-s{background:rgba(255,255,255,.05);border:1px solid var(--brd2);color:var(--tx2);padding:.6rem 1.2rem;border-radius:9px;text-decoration:none;font-size:.82rem}
.tools-grid{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin:1.5rem 0;text-align:left;position:relative;z-index:1}
.tl{background:rgba(255,255,255,.04);border:1px solid var(--brd2);border-radius:9px;padding:.7rem .9rem;text-decoration:none;color:var(--tx2);font-size:.78rem;display:flex;align-items:center;gap:.5rem;transition:all .2s}
.tl:hover{border-color:var(--brd);color:var(--gold)}
</style>
</head>
<body>
<div class="wrap" style="position:relative">
<div class="err-num">404</div>
<span class="ic">🔍</span>
<h1>Page Not Found</h1>
<p>The page you're looking for doesn't exist or has been moved. Use one of our free AI research tools below, or return to the homepage.</p>
<div class="tools-grid">
<a href="apa-citation-generator.html" class="tl">📋 APA Citation Generator</a>
<a href="mla-citation-generator.html" class="tl">📝 MLA Citation Generator</a>
<a href="legal-brief-irac-generator.html" class="tl">⚖️ IRAC Legal Brief</a>
<a href="literature-review-generator.html" class="tl">📖 Literature Review</a>
<a href="thesis-statement-builder.html" class="tl">✍️ Thesis Builder</a>
<a href="dissertation-chapter-planner.html" class="tl">🎓 Dissertation Planner</a>
</div>
<div class="links">
<a href="index.html" class="btn-p">🏠 Back to Homepage</a>
<a href="blog.html" class="btn-s">📚 Browse Articles</a>
<a href="contact.html" class="btn-s">📬 Report Issue</a>
</div>
</div>
</body>
</html>