-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththank_you.html
More file actions
56 lines (48 loc) · 1.88 KB
/
Copy paththank_you.html
File metadata and controls
56 lines (48 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You - First Class Apartments</title>
<style>
/* Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body, h1, h2, h3, p { margin: 0; padding: 0; }
body { font-family: 'Arial', sans-serif; color: #333; background: #f4f4f4; }
.container { width: 80%; max-width: 1200px; margin: auto; padding: 20px; }
/* Navigation Bar */
.navbar {
display: flex; justify-content: space-between; align-items: center; padding: 7px 0; background: green;
}
.navbar ul { list-style-type: none; display: flex; gap: 25px; }
.navbar a { text-decoration: none; color: #fff; font-weight: bold; }
.navbar a:hover { color: yellow; }
.header-section { text-align: center; padding: 20px 0; background: #fff; }
.header-section h1 { color: #333; font-size: 2.5em; margin-bottom: 10px; }
/* Thank You Message Section */
.thank-you-section {
background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; margin-top: 20px;
}
.thank-you-section img { width: 50px; }
.thank-you-section p { font-size: 1.2em; margin-top: 10px; }
</style>
</head>
<body>
<header class="navbar container">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About-us.html">About Us</a></li>
<li><a href="Apartments.html">Apartments</a></li>
<li><a href="Application.html">Applications</a></li>
</ul>
</nav>
</header>
<div class="container">
<div class="thank-you-section">
<img src="file:///C:/Users/Olive/OneDrive/Desktop/WEBsite/templates/thumbs_up_check.png" alt="Thumbs Up" style="width: 500px;">
<p>Thank you for submitting your application! A confirmation email has been sent to your email address.</p>
</div>
</div>
</body>
</html>