-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
83 lines (82 loc) · 3.05 KB
/
practice.html
File metadata and controls
83 lines (82 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WJA & Associates - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="head">
<h1>William J. Arendt & Associates P.C.</h1>
<ul>
<li>7035 Veterans Blvd. Suite A</li>
<li>Burr Ridge IL, 60527</li>
<li>(630) 887-7500</li>
</ul>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a href="practice.html" class="selected-nav">Practice Areas<span class="caret"></span></a>
<div>
<ul>
<li><a href="practice/business.html">Business Law</a></li>
<li><a href="practice/family.html">Family Law</a></li>
</ul>
</div>
</li>
<li>
<a href="profiles.html">Attorney Profiles<span class="caret"></span></a>
<div>
<ul>
<li><a href="profiles/william.html">William J. Arendt</a></li>
<li><a href="profiles/nikki.html">Nicola K. B. Latus</a></li>
<li><a href="profiles/chris.html">Christopher G. Hanig</a></li>
<li><a href="profiles/tony.html">Touchdown Tony</a></li>
</ul>
</div>
</li>
<li><a href="location.html">Location</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="main-content">
<h2>Practice Areas</h2>
<p>We handle a wide variety of litigation matters, with a focus on the following areas:</p>
<h3>Business Law</h3>
<p>Whether you own a small family business or represent a larger organization, William J. Arendt & Associates, P.C. can help you enforce your rights and protect your interests. We have experience in a wide variety of commercial litigation matters:</p>
<ul>
<li>Contracts</li>
<li>Business Fraud</li>
<li>Trust Agreements</li>
<li>Mechanics Liens</li>
<li>Employment Disputes</li>
<li>Bank & Financing Disputes</li>
<li>Landlord/Tenant</li>
</ul>
<p>For additional information on our business law practice, contact us directly.</p>
<h3>Family Law</h3>
<p>At William J. Arendt & Associates, P.C., we have extensive experience in all aspects of family law. Our attorneys can provide you with the guidance and advocacy you need during even your most difficult family law tribulations.</p>
<ul>
<li>Divorce and Legal Separation</li>
<li>Child Custody & Visitation</li>
<li>Complex Business Valuations</li>
<li>Property Division</li>
<li>Child Support</li>
<li>Maintenance</li>
<li>Modification</li>
<li>Parentage</li>
<li>Removal</li>
<li>Retirement Benefit Transfers</li>
<li>Pre-Nuptial Agreements</li>
</ul>
<p>For additional information on our family law practice, contact us directly.</p>
</div>
<div class="main-side">
<ul>
<li><a href="practice/business.html">Business Law</a></li>
<li><a href="practice/family.html">Family Law</a></li>
</div>
</body>
</html>