-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.html
65 lines (61 loc) · 2.75 KB
/
donate.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">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beesly's Friends</title>
<link rel="stylesheet" href="designs.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<a href="#default" class="logo">Beesly's Friends</a>
<div class="header-right">
<a href="index.html">Home</a>
<a href="ourStory.html">Our Story</a>
<a href="gallery.html">Friends</a>
<a class="active" href="donate.html">Donate</a>
</div>
</header>
</main>
<div class="donate">
<form action="">
<label for="fname">First Name:</label><br>
<input type="text" name="fname" id="fname"><br>
<label for="lname">Last Name:</label><br>
<input type="text" name="lname" id="lname"><br>
<label for="email">Email:</label><br>
<input type="text" name="email" id="email" required><br>
<label for="comments">Comments:</label><br>
<textarea name="message" id="comments" rows="10" cols="30"></textarea><br>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business"
value="[email protected]">
<!-- Specify a Donate button. -->
<input type="hidden" name="cmd" value="_donations">
<!-- Specify details about the contribution -->
<input type="hidden" name="item_name" value="Friends of the Park">
<input type="hidden" name="item_number" value="Fall Cleanup Campaign">
<input type="hidden" name="currency_code" value="USD">
<!-- Display the payment button. -->
<input type="image" name="submit"
src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif"
alt="Donate">
<img alt="" width="1" height="1"
src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >
</form>
</form>
</div>
</main>
<footer>
<br>
Copyright © 2021 Beesly's Friends
<br>
<a href="mailto:[email protected]">[email protected]</a>
</footer>
</body>
</html>