-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathThankyoufood.html
98 lines (85 loc) · 2.61 KB
/
Thankyoufood.html
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Thank You for Donating - Hunger Help</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #333;
color: white;
}
/* Navigation Bar Styles */
.navbar {
background-color: #4CAF50;
/* Green background color for the navbar */
padding: 10px 0;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin: 20px auto;
}
.logo {
color: white;
font-size: 24px;
font-weight: bold;
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.nav-links li {
margin-right: 20px;
}
.nav-links a {
text-decoration: none;
color: white;
font-weight: bold;
}
/* Thank You Page Styles */
.thank-you-container {
text-align: center;
margin: 50px auto;
}
.thank-you-image {
max-width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 20px;
}
.thank-you-statement {
font-size: 24px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="container">
<div class="logo">Hunger Help</div>
<ul class="nav-links">
<li><a href="WhatToDonate.html">Home</a></li>
<li><a href="AboutUs.html">About</a></li>
<li><a href="ContactUs.html">Contact Us</a></li>
<li><a href="Feedback.html">Rating&Feedback</a></li>
</ul>
</div>
</nav>
<!-- Thank You Page Content -->
<div class="thank-you-container">
<img src="https://cdn1.iconfinder.com/data/icons/vibrancie-action/30/action_027-checkmark-done-check-finish-512.png" alt="Thank You" class="thank-you-image">
<p class="thank-you-statement">Thank you for your generous donation!</p>
<!-- You can add additional content or customize as needed -->
</div>
</body>
</html>