-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
66 lines (64 loc) · 2.19 KB
/
services.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adoption Services</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>Adoption Services</h1>
<p>Comprehensive services to support families and children</p>
</div>
<ul class="service-menu">
<li>
<a href="adoption_process.html">Information on Adoption Process</a>
</li>
<li>
<a href="waiting_children.html">Profiles of Waiting Children</a>
</li>
<li>
<a href="adoptive_families.html">Adoptive Family Profiles</a>
</li>
<li>
<a href="matching_services.html">Matching Services</a>
</li>
<li>
<a href="educational_resources.html">Educational Resources</a>
</li>
<li>
<a href="support_services.html">Support Services</a>
</li>
<li>
<a href="legal_assistance.html">Legal Assistance</a>
</li>
<li>
<a href="post_adoption_support.html">Post-Adoption Support</a>
</li>
<li>
<a href="faqs.html">FAQs and Informational Articles</a>
</li>
<li>
<a href="testimonials.html">Testimonials and Success Stories</a>
</li>
<li>
<a href="resource_directory.html">Resource Directory</a>
</li>
<li>
<a href="events_workshops.html">Events and Workshops</a>
</li>
<li>
<a href="multilingual_support.html">Multilingual Support</a>
</li>
<li>
<a href="privacy_security.html">Privacy and Security Measures</a>
</li>
</ul>
<div class="button-section">
<a href="index.html"><button>Back to Home</button></a>
</div>
</div>
</body>
</html>