-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharityprofile1.html
89 lines (72 loc) · 3.29 KB
/
charityprofile1.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
<!DOCTYPE html>
<html>
<head>
<title>HelpHub</title>
<!--<link rel="stylesheet" href="style.css">-->
</head>
<body>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="find.html">Find Charities</a></li>
<link rel="stylesheet" href="style.css">
</ul>
<div class="titles"><h1>Phoenix Rescue Mission</h1></div>
<div class="charity-profile">
<div class="information-section">
<h3>Information:</h3>
<ul>
<li>Where: 1540 W. Van Buren St. Phoenix, AZ 85007</li>
<li>Hours: 8 a.m. - 4 p.m.</li>
<li>Contact: (602) 233-3000, [email protected]</li>
</ul>
</div>
<div class="profile-image">
<img src="prmission.jpeg" alt="Phoenix Rescue Mission" class="charity-image">
</div>
<div class="charity-about">
<h2>About:</h2>
<p>"Our mission is to provide Christ-centered, life-transforming solutions
to people facing hunger, homelessness, addiction and trauma.
That mission proceeds through a wide variety of programs that address
immediate and long-term needs. Taken together, these advance our God-given
vision: Love, hope and transformation to every neighbor in the Valley."
If you would like to read more, visit their page at:<a href="https://phoenixrescuemission.org/about/" target="_self" title="Phoenix Rescue Mission">
PRM About</a></p>
</div>
<!-- Volunteer Form (Initially Hidden) -->
<div class="volunteer-section">
<button id="volunteer-now-button">Volunteer Now</button>
<div id="volunteer-form-container">
<form id="volunteer-form">
<label for="name">Full Name:</label><br>
<input type="text" id="name" name="name" placeholder="John Doe" required><br>
<label for="age">Age:</label><br>
<input type="text" id="age" name="age" placeholder="25"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" placeholder="[email protected]" required><br>
<label for="phone">Phone Number:</label><br>
<input type="tel" id="phone" name="phone" placeholder="123-456-7890" required><br>
<label for="message">Why do you want to volunteer?</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br>
<button type="submit">Submit</button>
</form>
</div>
</div>
</div>
<!-- Success Message (Initially Hidden) -->
<div id="success-message" style="display:none;"></div>
<div class="review-section">
<p>"I was so blessed when I first came to Phoenix Rescue Mission. I was met
by very good, honest people who work with heart. I could feel God's
love here." -Nathalye</p>
<p>"When I walked through the gates, I felt so relieved. I felt welcomed and
like I mattered." -Pete</p>
<p>"Phoenix Rescue Mission means everything to me.
They've given me all I needed
to recover..." -Jennifer</p>
</div>
<!-- Link to the external JavaScript file -->
<script src="charity_profile.js"></script>
</body>
</html>