-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDonation.html
149 lines (138 loc) · 4.43 KB
/
Donation.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Donation</title>
<link rel="stylesheet" href="donation.css" />
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Acme&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" />
<style>
body {
background: url("dbackground.jpg") no-repeat;
background-size: cover;
width: 100vw;
height: 100vh;
}
h1 {
width: 70%;
position: absolute;
top: 15%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 80px;
text-transform: uppercase;
font-family: "Acme", sans-serif;
letter-spacing: 3px;
color: whitesmoke;
text-shadow: 7px 7px 10px darkblue;
}
</style>
</head>
<body>
<h1>welcome to donation page</h1>
<div class="slider owl-carousel">
<div class="card">
<div class="img">
<img src="bloodd.gif" alt="Blood Donation" />
</div>
<div class="content">
<div class="title">Blood</div>
<p>
Blood donation is the most important social service to humankind.by
donating we can give others a life support. <br />
<strong>"Sometimes money cannot save life but donated blood can".</strong>
</p>
<div class="btn">
<button>
<a href="Blood donation.html" style="color: white; text-decoration: none">Read more</a>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="volunteers.jpg" alt="" />
</div>
<div class="content">
<div class="title">Volunteer</div>
<p>
Change will not come if we wait for some other person, or if we wait
for some other time. We are the ones we’ve been waiting for. We are
the change that we seek.”
</p>
<div class="btn">
<button>
<a href=" volunteer.html" style="color: white; text-decoration: none">Read more</a>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src=" food.jpg" alt="" />
</div>
<div class="content">
<div class="title">Food</div>
<p>
Some Waste food to show that they are rich few donate food,Because
they have a rich heart Don't be rude, donate some food.
</p>
<div class="btn">
<button>
<a href=" food.html" style="color: white; text-decoration: none">Read more</a>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src=" support.jpg" alt="" />
</div>
<div class="content">
<div class="title">Support</div>
<p>
I don’t think you ever stop giving. I really don’t. I think it’s an
on-going process. And it’s not just about being able to write a
check. It’s being able to touch somebody’s life.” “Fundraising is
the gentle art of teaching the joy of giving.”
</p>
<div class="btn">
<button>
<a href=" support.html" style="color: white; text-decoration: none">Read more</a>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src=" funds.jpg" alt="" />
</div>
<div class="content">
<div class="title">Fund</div>
<p>
Making a donation is the ultimate sign of solidarity.actions speak
louder than the words Small Acts when multiplied by millions of
people can transform the world.
</p>
<div class="btn">
<button>
<a href=" fund.html" style="color: white; text-decoration: none">Read more</a>
</button>
</div>
</div>
</div>
</div>
<script>
$(".slider").owlCarousel({
items: 3,
nav: true,
loop: true,
autoplay: true,
autoplayTimeout: 2000, //2000ms = 2s;
autoplayHoverPause: true,
});
</script>
</body>
</html>