-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (103 loc) · 4 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Where To Donate</title>
<style>
.thick {
color: #0e6561;
background: #ffffff;
border-color: #0e6561;
}
.thick:hover {
color: #fff;
font-weight: 700;
background: #0e6561;
}
.thick::after {
mix-blend-mode: color-dodge;
}
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="cover.css" rel="stylesheet">
</head>
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<img src="img/icon-4.png" class="masthead-brand" height="80" width="80">
<h3 class="masthead-brand">Where To Donate</h3>
<nav class="nav nav-masthead justify-content-center ">
<a class="nav-link active align-bottom" href="index.html">Home</a>
<a class="nav-link dropdown-toggle mr-3" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Donate
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="provide.html">
Provide Ration
</a>
<a class="dropdown-item" href="feed.html">Feed the Stray</a>
<a class="dropdown-item" href="support.html">Support the Covid Warriors</a>
</div>
<a class="nav-link" href="about-us.html">About us</a>
</nav>
</div>
</header>
<main role="main">
<div class="container rounded pt-3 pb-3 bg-light">
<h1 class="cover-heading" style="text-decoration: blue;">Join us by donating and helping the nation.</h1>
<p style="text-decoration: black;">As the World witnesses one of the deadliest economy crash and widespread
virus, it becomes our
responisbilty to help and contribute to the society</p>
<div class="cover">
<p class="lead">
<a href="provide.html" class="btn btn-lg thick">
<img src="img/harvest (2).png">
Provide
</a>
<a href="feed.html" class="btn btn-lg thick">
<img src="img/pet.png">
Feed</a>
<a href="support.html" class="btn btn-lg thick">
<img src="img/woman.png">Support</a>
</p>
</div>
</div>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a
href="https://www.flaticon.com/" title="Flaticon"> www.flaticon.com</a>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>