-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonateDetails.html
116 lines (107 loc) · 4.2 KB
/
donateDetails.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<style>
/* Your CSS styles go here */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
header {
background-color: #007bff;
color: #fff;
text-align: center;
padding: 20px;
}
h1 {
font-size: 36px;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
p {
font-size: 18px;
line-height: 1.5;
}
footer {
text-align: center;
background-color: #007bff;
color: #fff;
padding: 10px;
}
</style>
</head>
<body>
<header>
Welcome to My Web Page</h1>
</header>
<main>
<section class="don-sec" id="donation">
<div class="container">
<div class="heading">
<h2>We Manage Wastage or Donation like..</h2>
</div>
<div class="row">
<div class="col-lg-4">
<div class="don-box">
<img src="img/don/clothing.png" alt="img">
<h3>Clothes</h3>
<p>Give your clothes a second chance: donate them today and help make a difference.</p>
<a href="donate.html" class="btn1">Donate Now</a>
</div>
</div>
<div class="col-lg-4">
<div class="don-box">
<img src="img/don/sneakers.png" alt="img">
<h3>Footware</h3>
<p>Step up and make a difference: donate your footwear today and help those in need.</p>
<a href="donate.html" class="btn1">Donate Now</a>
</div>
</div>
<div class="col-lg-4">
<div class="don-box">
<img src="img/don/salary.png" alt="img">
<h3>Fund</h3>
<p>Your donation can make a world of difference: give today to support our cause and help those in need.</p>
<a href="donate.html" class="btn1">Donate Now</a>
</div>
</div>
<div class="col-lg-4">
<div class="don-box">
<img src="img/don/gadgets.png" alt="img">
<h3>Gadgets</h3>
<p>Unlock the power of giving: donate your gadgets today and help bridge the digital divide for those in need.</p>
<a href="donate.html" class="btn1">Donate Now</a>
</div>
</div>
<div class="col-lg-4">
<div class="don-box">
<img src="img/don/book.png" alt="img">
<h3>Stationary</h3>
<p>Make a mark in someone's life: donate your stationery today and help provide educational resources for those in need.</p>
<a href="donate.html" class="btn1">Donate Now</a>
</div>
</div>
<div class="col-lg-4">
<div class="don-box">
<img src="img/don/shopping-bag.png" alt="img">
<h3>Food</h3>
<p>Feed a hungry mouth today: donate food and help fight hunger in your community.</p>
<a href="donate.html" class="btn1">Donate Now</a>
</div>
</div>
</div>
</div>
</section>
</main>
</body>
</html>