-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
87 lines (79 loc) · 4.3 KB
/
index.php
File metadata and controls
87 lines (79 loc) · 4.3 KB
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
<!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://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>WWW.help needy people.com</title>
</head>
<body>
<div class="container mt-2 fixed-top d-flex justify-content-between align-content-center">
<div>
<a class="nav-link p-0 m-0" href="index.php">
<p class="text-white font-weight-bold">Help Needy People</p>
</a>
</div>
<div>
<a href="./register.php"><button class="btn btn-info text-white m-1 py-0" type="button">Register</button></a>
<a href="./login.php"><button class="btn btn-success py-0" type="button">Login</button></a>
</div>
</div>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" style="height: 100vh;"
src="https://images.tech.co/wp-content/uploads/2020/06/03205107/charity-donation-tech.jpeg"
alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="margin-bottom:150px ;">If you want your checkbook to follow your heart, make a donation
to those doing work you support.<br> – Donna Brazile</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" style="height: 100vh;"
src="./Donate-image.jpg"
alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="margin-bottom:150px ;">Giving is an attitude. It is not dependent on the amount of money
in your bank account. It’s a heart issue. <br> – John Di Lemme</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" style="height: 100vh;"
src="https://www.habitatbroward.org/wp-content/uploads/2021/08/Direct-Gift.jpg" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="margin-bottom:150px ;">I think people forget that it doesn’t take a big donation to help
someone, just a lot of little donations.<br> – Hannah Teter</h5>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<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://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>