-
Notifications
You must be signed in to change notification settings - Fork 656
/
event3.html
114 lines (99 loc) · 2.34 KB
/
event3.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animal Fundraiser Events</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
/* background-image: url('event-img.jpeg');
background-repeat:no-repeat;
background-attachment: fixed;
background-size: cover;
background-size: 100% 100%; */
}
body {
font-family: Arial, sans-serif;
background-color: #f0e9e9;
color: #333;
}
header {
background-color: #7dbf50;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
font-size: 36px;
}
header p {
font-size: 18px;
}
.events {
display: flex;
justify-content: center;
gap: 20px;
padding: 20px;
flex-wrap: wrap;
}
.event-card {
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 300px;
padding: 20px;
text-align: center;
}
.event-card h2 {
font-size: 24px;
margin-bottom: 10px;
color: #333;
}
.event-card p {
font-size: 16px;
margin-bottom: 10px;
}
.event-card button {
background-color: #7dbf50;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}
.event-card button:hover {
background-color: #5b9c3e;
}
footer {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Animal Fundraiser Programs</h1>
<p>Join us to help raise funds for animal welfare!</p>
</header>
<section class="events">
<div class="event-card">
<h2>Wildlife Conservation Walk</h2>
<p>Date: January 5, 2024</p>
<p>Timings: 10AM - 12:30PM</p>
<p>Location:Manhattan to new jersy</p>
<img src="conservation-walk.jpeg" width="250px" alt="">
<p>A walkathon to support wildlife conservation efforts.Where each step counts asa a dollar. please help us to help wild.</p>
<button>Learn More</button>
</div>
</section>
<footer>
<p>© 2024 Animal Fundraiser. All Rights Reserved.</p>
</footer>
</body>
</html>