-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHowToDonate.html
65 lines (59 loc) · 2.1 KB
/
HowToDonate.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>How to Donate</title>
<link rel="stylesheet" href="index.css">
<style media="screen">
#steps{
font-size: 120%;
text-align:left;
margin:10px;
}
</style>
</head>
<body class="qpages">
<div class="header">
<div id="page-title">
<button type="button" name="home-button" id="home-button" onclick="document.location.href='index.php'"></button>
<h1>BeSanta : Donation System</h1>
<p class="slogan">Let's be someone's Santa!</p>
</div>
</div>
<div class="main-container">
<br>
<div id="steps">
<h2>Steps to be followed : </h2>
<ol>
<li>Log In/ Register into your Account</li>
<li>Click on Donate button</li>
<li>Fill in the item details</li>
<li>Add an Image of the item</li>
<li>Click on Submit</li>
</ol>
</div>
<div class="page-buttons" style="margin:2%;">
<button type="button" name="who_can_donate" id="who" class="buttons" onclick="document.location.href='whoCanDonate.html'">Who Can Donate</button><br>
<button type="button" name="what_to_donate" id="what" class="buttons" onclick="document.location.href='whatToDonate.html'">What to Donate</button><br>
</div><br>
</div>
<div class="footer" id="page-footer">
<div class="" id="aboutus">
<h3>About Us</h3>
<p style="position:relative;">
We, the team of BeSanta are from Goa, India who help you find the right people for you to donate through this Website
</p><br>
</div>
<div class="" id="Quicklinks">
<h3>Quick Links</h3>
<p>
<a class="links" href="contact.html">Contact Us</a>
<a class="links" href="Search-Display.html">Search Items</a>
<a class="links" href="AddItem.html">Add Item</a>
<a class="links" href="DeleteItem.html">Delete Items</a>
<a class="links" href="UpdateItem.html">Update Items</a>
</p>
</div><br>
</div>
</body>
</html>