-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
520 lines (487 loc) · 27.9 KB
/
Copy pathindex.php
File metadata and controls
520 lines (487 loc) · 27.9 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<?php
include 'header.php';
?>
<!-- Carousel Start -->
<div id="carousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/carousel-1.jpg" alt="Carousel Image">
<div class="carousel-caption">
<h1 class="animated fadeInLeft">We fight for your justice</h1>
<p class="animated fadeInRight">The first duty of society is justice.</p>
<a class="btn animated fadeInUp" href="attorney.php">Get free consultation</a>
</div>
</div>
<div class="carousel-item">
<img src="img/carousel-2.jpg" alt="Carousel Image">
<div class="carousel-caption">
<h1 class="animated fadeInLeft">We prepared to oppose for you</h1>
<p class="animated fadeInRight">The law is reason free from passion.</p>
<a class="btn animated fadeInUp" href="attorney.php">Get free consultation</a>
</div>
</div>
<div class="carousel-item">
<img src="img/carousel-3.jpg" alt="Carousel Image">
<div class="carousel-caption">
<h1 class="animated fadeInLeft">We fight for your privilege</h1>
<p class="animated fadeInRight">Lawyers are the foot soldiers of our Constitution.</p>
<a class="btn animated fadeInUp" href="attorney.php">Get free consultation</a>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carousel" 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="#carousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Carousel End -->
<!-- Top Feature Start-->
<div class="feature-top">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-md-3 col-sm-6">
<div class="feature-item">
<i class="far fa-check-circle"></i>
<h3>Legal</h3>
<p>Govt Approved</p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="feature-item">
<i class="fa fa-user-tie"></i>
<h3>Attorneys</h3>
<p>Expert Attorneys</p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="feature-item">
<i class="far fa-thumbs-up"></i>
<h3>Success</h3>
<p>99.99% Case Won</p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="feature-item">
<i class="far fa-handshake"></i>
<h3>Support</h3>
<p>Quick Support</p>
</div>
</div>
</div>
</div>
</div>
<!-- Top Feature End-->
<!-- About Start -->
<div class="about">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 col-md-6">
<div class="about-img">
<img src="img/about.jpg" alt="Image">
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="section-header">
<h2>Learn About Us</h2>
</div>
<div class="about-text">
<p class="text-justify">
Lawyers are professional trained in the intricate principles of law and justice, serving as an advocate, counselor, and defender of individuals, organizations, and society as a whole. Lawyers provide legal guidance, represent clients in various legal proceedings, and strive to ensure that justice is upheld. They are tasked with interpreting and applying complex legal codes, researching case precedents, negotiating settlements, and presenting compelling arguments in court. Beyond their legal expertise, lawyers must exhibit ethical conduct, a commitment to fairness, and a dedication to upholding the rule of law, making them essential pillars of a just and orderly society.
</p>
<a class="btn" href="attorney.php">Learn More</a>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<div class="portfolio">
<div class="container">
<div class="section-header">
<h2>Our Practices Areas</h2>
</div>
<div class="row">
<div class="col-12">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".first">Civil</li>
<li data-filter=".second">Criminal</li>
<li data-filter=".third">Family</li>
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item first">
<div class="portfolio-wrap">
<img src="img/portfolio-1.jpg" alt="Portfolio Image">
<figure>
<p>Crime</p>
<a href="attorney.php">Criminal Case</a>
</figure>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item second">
<div class="portfolio-wrap">
<img src="img/portfolio-2.jpg" alt="Portfolio Image">
<figure>
<p>Affidavit</p>
<a href="attorney.php">Affidavit Case</a>
</figure>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item third">
<div class="portfolio-wrap">
<img src="img/portfolio-3.jpg" alt="Portfolio Image">
<figure>
<p>Family</p>
<a href="attorney.php">Divorce Case</a>
</figure>
</div>
</div>
</div>
</div>
</div>
<!-- Feature Start -->
<div class="feature">
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="section-header">
<h2>Why Choose Us</h2>
</div>
<div class="row align-items-center feature-item">
<div class="col-5">
<div class="feature-icon">
<i class="fa fa-gavel"></i>
</div>
</div>
<div class="col-7">
<h3>Best law practices</h3>
<p class="text-justify">
Attorneys fighting for your rights, freedom, case custody. We have lawyer's database so that we can provide clients with relevant lawyers as per there need.
</p>
</div>
</div>
<div class="row align-items-center feature-item">
<div class="col-5">
<div class="feature-icon">
<i class="fa fa-balance-scale"></i>
</div>
</div>
<div class="col-7">
<h3>Efficiency & Trust</h3>
<p class="text-justify">
We have help thousands of people to get relief from national wide fights wrongfull denials, our support team helps them to find the best lawyer, now they trusted our best attorneys.
</p>
</div>
</div>
<div class="row align-items-center feature-item">
<div class="col-5">
<div class="feature-icon">
<i class="far fa-smile"></i>
</div>
</div>
<div class="col-7">
<h3>Results you deserve</h3>
<p class="text-justify">
Tenacity, steadfast commitment to achieving the best possible results for you. Trust us to be your advocates and allies in pursuit of justice and success. Your satisfaction is our ultimate goal.
</p>
</div>
</div>
</div>
<div class="col-md-5">
<div class="feature-img">
<img src="img/feature.jpg" alt="Feature">
</div>
</div>
</div>
</div>
</div>
<!-- Feature End -->
<!-- Team Start -->
<div class="team">
<div class="container">
<div class="section-header">
<h2>Meet Our Expert Attorneys</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="img/team-1.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>Adam Phillips</h2>
<p>Affidavit Consultant</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="img/team-2.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>Dylan Adams</h2>
<p>Criminal Consultant</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="img/team-3.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>Gloria Edwards</h2>
<p>Divorce Consultant</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="img/team-4.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>Josh Dunn</h2>
<p>Civil Consultant</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- FAQs Start -->
<div class="faqs">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="faqs-img">
<img src="img/faqs.jpg" alt="Image">
</div>
</div>
<div class="col-md-7">
<div class="section-header">
<h2>Have Questions?</h2>
</div>
<div id="accordion">
<div class="card">
<div class="card-header">
<a class="card-link collapsed" data-toggle="collapse" href="#collapseOne" aria-expanded="true">
<span>1</span> How much will my lawyer charge for legal services?
</a>
</div>
<div id="collapseOne" class="collapse show" data-parent="#accordion">
<div class="card-body text-justify">
The cost of a lawyer will depend on the type of task that they are handling for you. In some cases a lawyer may charge a flat fee to handle a certain routine task or they may charge a fee only if you win.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<a class="card-link" data-toggle="collapse" href="#collapseTwo">
<span>2</span> What are the qualifications of a lawyer?
</a>
</div>
<div id="collapseTwo" class="collapse" data-parent="#accordion">
<div class="card-body text-justify">
Lawyers are college educated professionals who have received a degree from an accredited law school and have passed the bar exam in their state. The bar exam requires them to demonstrate their knowledge across many areas of law.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<a class="card-link" data-toggle="collapse" href="#collapseThree">
<span>3</span>Can lawyers represent clients in different areas of law?
</a>
</div>
<div id="collapseThree" class="collapse" data-parent="#accordion">
<div class="card-body text-justify">
Some lawyers have broad practice but many specialize in specific areas of law such as family law, real estate or criminal defense. It's important to choose a lawyer with expertise in the relevant area for your case.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<a class="card-link" data-toggle="collapse" href="#collapseFour">
<span>4</span> Do I need a lawyer for every legal issue?
</a>
</div>
<div id="collapseFour" class="collapse" data-parent="#accordion">
<div class="card-body text-justify">
Not necessarily, some legal matters like minor traffic violations or small claims court cases may not require legal representation. However, for complex or serious legal issues consulting with or hiring a lawyer is often advisable.
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<a class="card-link" data-toggle="collapse" href="#collapseFive">
<span>5</span> What is the difference between a civil and criminal lawyer?
</a>
</div>
<div id="collapseFive" class="collapse" data-parent="#accordion">
<div class="card-body text-justify">
Civil lawyers handle cases involving disputes between individuals or organizations such as personal injury, divorce or contract disputes. Criminal lawyers deal with cases involving criminal offenses representing the prosecution in criminal trials.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQs End -->
<!-- Testimonial Start -->
<div class="testimonial">
<div class="container">
<div class="section-header">
<h2>Review From Client</h2>
</div>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<i class="fa fa-quote-right"></i>
<div class="row align-items-center">
<div class="col-3">
<img src="img/testimonial-1.jpg" alt="">
</div>
<div class="col-9">
<h2>Ziya Canca</h2>
</div>
<div class="col-12">
<p class="text-justify">
I highly recommend this website, very attentive to meeting our needs and I am very pleased with our service. Their staff exceeded our expectations, and I am confident in the legal representation this firm provided.
</p>
</div>
</div>
</div>
<div class="testimonial-item">
<i class="fa fa-quote-right"></i>
<div class="row align-items-center">
<div class="col-3">
<img src="img/testimonial-2.jpg" alt="">
</div>
<div class="col-9">
<h2>Mary Consolata</h2>
</div>
<div class="col-12">
<p class="text-justify">
Attorney Ms.Gloria Edwards was so sincere, Knowledgeable and professional when helping me with my case. Thanks for the legal advice. I was able to get clarity of my rights and what to expect during my case.
</p>
</div>
</div>
</div>
<div class="testimonial-item">
<i class="fa fa-quote-right"></i>
<div class="row align-items-center">
<div class="col-3">
<img src="img/testimonial-3.jpg" alt="">
</div>
<div class="col-9">
<h2>James Barrel</h2>
</div>
<div class="col-12">
<p class="text-justify">
I would recommend Attorney Adam Phillips to anyone who is experiencing complex Criminal issues. He was not only prompt in returning my calls but also emailing me efficient manner. I will recommend this website to anyone.
</p>
</div>
</div>
</div>
<div class="testimonial-item">
<i class="fa fa-quote-right"></i>
<div class="row align-items-center">
<div class="col-3">
<img src="img/testimonial-4.jpg" alt="">
</div>
<div class="col-9">
<h2>Meleena Paul</h2>
</div>
<div class="col-12">
<p class="text-justify">
Dylan Adams provided me with excellent legal advice and services. He explained everything well and came through with all questionable issues. I found him to be reliable, courteous and professional. I highly recommend him.
</p>
</div>
</div>
</div>
<div class="testimonial-item">
<i class="fa fa-quote-right"></i>
<div class="row align-items-center">
<div class="col-3">
<img src="img/avatar2.jpg" alt="">
</div>
<div class="col-9">
<h2>Jason Poblete</h2>
</div>
<div class="col-12">
<p class="text-justify">
Someones experience cases like mine attorneys I had to choose from was great it let me tailor my case. Without your website I was going in circles but with your service I now have an attorney to finally help me.
</p>
</div>
</div>
</div>
<div class="testimonial-item">
<i class="fa fa-quote-right"></i>
<div class="row align-items-center">
<div class="col-3">
<img src="img/avatar3.jpg" alt="">
</div>
<div class="col-9">
<h2>Patrick Nelson</h2>
</div>
<div class="col-12">
<p class="text-justify">
Needed assistance on legal matters and didn't know where to go.
Finally found these website and decided to give it a try. I started receiving calls from the exact lawyers I needed for my legal assistance.
</p>
</div>
</div>
</div>
<div class="testimonial-item">
<i class="fa fa-quote-right"></i>
<div class="row align-items-center">
<div class="col-3">
<img src="img/avatar.jpg" alt="">
</div>
<div class="col-9">
<h2>Susan Gilman</h2>
</div>
<div class="col-12">
<p class="text-justify">
Website advertised exactly and put contact me with
number of attorneys quickly and minimal effort. The
process was straightforward unstressful and
unconfusing process of finding the right lawyer.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Newsletter Start -->
<div class="newsletter">
<div class="container">
<div class="section-header">
<h2>Subscribe Our Newsletter</h2>
</div>
<div class="form">
<input class="form-control" placeholder="Email here">
<button class="btn">Submit</button>
</div>
</div>
</div>
<!-- Newsletter End -->
<?php
include 'footer.php';
?>