-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
25 lines (25 loc) · 1.29 KB
/
Copy pathsuccess.html
File metadata and controls
25 lines (25 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Message Received | SC Engineering</title>
<style>
body { font-family: 'Segoe UI', sans-serif; background: #f8fafc; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; text-align: center; }
.card { background: white; padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 500px; }
.icon { font-size: 50px; color: #00d2ff; margin-bottom: 20px; }
h1 { color: #0f172a; margin-bottom: 10px; }
p { color: #64748b; line-height: 1.6; margin-bottom: 30px; }
.btn { background: #00d2ff; color: white; text-decoration: none; padding: 12px 25px; border-radius: 8px; font-weight: bold; transition: 0.3s; }
.btn:hover { background: #3a7bd5; }
</style>
</head>
<body>
<div class="card">
<div class="icon">✔</div>
<h1>Submission Successful!</h1>
<p>Thank you for reaching out to SC Engineering. Our team has received your brief and will review it shortly. Expect a response via email within 24 business hours.</p>
<a href="index.html" class="btn">Return to Home</a>
</div>
</body>
</html>