-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfund.html
125 lines (118 loc) · 3.38 KB
/
fund.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
<!DOCTYPE html>
<!-- Created By CodingNepal -->
<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
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
/>
</head>
<body>
<h1>Our Funding</h1>
<div class="slider owl-carousel">
<div class="card">
<div class="img">
<img src="keeto.png" alt="" />
</div>
<div class="content">
<div class="title">Ketto</div>
<div class="sub-title">+91 7700975559</div>
<div class="btn">
<button>
<a
href="https://www.ketto.org/"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="helpage.jpg" alt="" />
</div>
<div class="content">
<div class="title">Help Age India</div>
<div class="sub-title">18001801253</div>
<div class="btn">
<button>
<a
href="https://www.helpageindia.org/"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="sood.jpg" alt="" />
</div>
<div class="content">
<div class="title">Sood Foundation</div>
<div class="sub-title">7879244364</div>
<div class="btn">
<button>
<a
href="https://soodcharityfoundation.org/"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="impact.png" alt="" />
</div>
<div class="content">
<div class="title">Impact Guru.com</div>
<div class="sub-title">18008912903</div>
<div class="btn">
<button>
<a
href="https://www.impactguru.com/"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="give.png" alt="" />
</div>
<div class="content">
<div class="title">Give India</div>
<div class="sub-title">Bengluru,Karnatika</div>
<div class="btn">
<button>
<a
href="https://www.giveindia.org/"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
</div>
<script>
$(".slider").owlCarousel({
loop: true,
autoplay: true,
autoplayTimeout: 3000, //2000ms = 2s;
autoplayHoverPause: true,
});
</script>
</body>
</html>