-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththanks.html
More file actions
42 lines (39 loc) · 1.95 KB
/
Copy paththanks.html
File metadata and controls
42 lines (39 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You | Ismail K.</title>
<meta name="robots" content="noindex, nofollow">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<!-- Google Fonts: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/index.css">
<style>
.thanks-page { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 2rem; }
.thanks-card { max-width: 600px; padding: 4rem; }
.thanks-card h1 { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--clr-accent-gold); }
.thanks-card p { font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-bottom: 3rem; }
@media (max-width: 600px) {
.thanks-card h1 { font-size: 2.5rem; }
}
</style>
</head>
<body>
<!-- Custom Cursor -->
<div class="cursor"></div>
<main class="thanks-page">
<div class="glass-card thanks-card reveal active">
<svg viewBox="0 0 24 24" width="80" height="80" stroke="var(--clr-accent-emerald)" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" style="margin-bottom: 2rem;"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>
<h1>Message Sent!</h1>
<p>Thank you for reaching out. I've received your message and will get back to you as soon as possible.</p>
<a href="index.html" class="btn magnetic-btn">Back to Home</a>
</div>
</main>
<script src="js/index.js"></script>
</body>
</html>