-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
64 lines (58 loc) · 1.9 KB
/
success.html
File metadata and controls
64 lines (58 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You | 2VM SoCal Construction</title>
<link rel="stylesheet" href="assets/styles.css">
<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=Outfit:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
.success-page {
min-height: 60vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 120px 20px;
}
.success-icon {
font-size: 4rem;
color: var(--primary-color);
margin-bottom: 20px;
}
</style>
</head>
<body>
<header class="site-header">
<div class="container">
<a href="/" class="logo">
<img src="assets/images/logo.png" alt="2VM SoCal Construction" height="50">
</a>
<nav class="main-nav">
<ul class="nav-links">
<li><a href="/">Home</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="success-page">
<div class="success-icon">✓</div>
<h1>Message Sent!</h1>
<p>Thank you for contacting us. We will get back to you shortly.</p>
<br>
<a href="/" class="btn btn-primary">Return Home</a>
</section>
</main>
<footer class="site-footer">
<div class="container">
<p>©
<script>document.write(new Date().getFullYear())</script> 2VM SoCal Construction. All rights reserved.
</p>
</div>
</footer>
</body>
</html>