-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfood.html
133 lines (131 loc) · 4.53 KB
/
food.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
<!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 Food Donors</h1>
<div class="slider owl-carousel">
<div class="card">
<div class="img">
<img src="clark.png" alt="" />
</div>
<div class="content">
<div class="title">Clarks Inn Suites</div>
<div class="sub-title">Gwalior</div>
<p>Feed the Daily Wager across 100+ cities.</p>
<div class="btn">
<button>
<a
href="http://www.clarksinn.in/"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="thepower.jpg" alt="" />
</div>
<div class="content">
<div class="title">The Power Of Education Foundations</div>
<div class="sub-title">Salaser Road, City Centre</div>
<p>
They access excess leftover food from restaurants and caterers in
order to provide food to the poor kids and adults.
</p>
<div class="btn">
<button>
<a
href="https://www.justdial.com/Gwalior/The-Power-Of-Education-Foundations-Behind-Salaser-Mall-City-Centre/9999PX751-X751-180313121423-J8F6_BZDET?xid=R3dhbGlvciBOR09TIEZvciBGb29kIERvbmF0aW9u"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="balaji1.jpg" alt="" />
</div>
<div class="content">
<div class="title">Shree Sankat Mochan Balaji Trust</div>
<div class="sub-title">Gargaj Colony, Bahodapur</div>
<p>
Supporting children & families at risk on the street and in slum.
</p>
<div class="btn">
<button>
<a
href="https://www.google.com/maps/dir//Shree+Sankat+Mochan+Balaji+Dham+Mandir/data=!4m6!4m5!1m1!4e2!1m2!1m1!1s0x3976c666816e7bf5:0x3f310a59c0ef0e18?sa=X&ved=2ahUKEwjNzq3vov7yAhUm5nMBHTWyCWIQ9Rd6BAhMEAM"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="patntfood.jpg" alt="" />
</div>
<div class="content">
<div class="title">Free food for Hospital Patient Caretaker</div>
<div class="sub-title">J. A. Hospital Campus, Lashkar</div>
<p>
Provide meal, family survival kit, mask, sanitizer, soap, protective
hygiene kit to people who most need it.
</p>
<div class="btn">
<button>
<a
href="https://www.google.com/maps/dir/26.2038356,78.2134339/food+donation+near+me/@26.2023388,78.1499235,13z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x3976c524a2ecc97b:0x96cca9452998f065!2m2!1d78.1571573!2d26.1924874"
style="color: white; text-decoration: none"
>Read more</a
>
</button>
</div>
</div>
</div>
<div class="card">
<div class="img">
<img src="isci.png" alt="" />
</div>
<div class="content">
<div class="title">ISCI FOUNDATION</div>
<div class="sub-title">Sirol Main Rd, City Center</div>
<p>Runs a programme (Rahat Covid) .</p>
<div class="btn">
<button>
<a
href="https://www.iscifoundation.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>