-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.php
151 lines (144 loc) · 4.36 KB
/
services.php
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
<!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">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Quicksand" />
<title>Welcome | Klim Advocates & Solicitors</title>
</head>
<body class="container">
<div class="wrapper container-fluid">
<header>
<nav class="navbar navbar-default">
<div class="container-fluid logo-container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">
<h3 class="logo-text">Klim Logo</h3>
</a>
</div>
<form class="navbar-form search navbar-right" role="search">
<div class="form-group">
<input type="text" class="form-control well" placeholder="Search">
</div>
</form>
</div>
<div class="container-fluid">
<div class="navbar-header">
<h3 class="navbar-toggle collapsed breadcrumbp" aria-expanded="false">About Us</h3>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span></button>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li role="presentation" ><a href=".">WELCOME</a></li>
<li role="presentation" ><a href="about-us">ABOUT US</a></li>
<li role="presentation"><a href="advocates">ADVOCATES</a></li>
<li role="presentation" class="active"><a href="services">SERVICES</a></li>
<li role="presentation"><a href="clients">CLIENTS</a></li>
<li role="presentation"><a href="contact-us">CONTACT US</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="main container-fluid">
<div class="primary col-md-9">
<div class="jumbotron">
<h2>Services</h2>
<p>
Services offered by Klim
</p>
</div>
</div>
<div class="secondary col-md-3">
<form class="search" role="search">
<div class="form-group">
<input type="text" class="form-control well" placeholder="Search">
</div>
</form>
<aside id="contact-info">
<h3>Contact Us</h3>
<div>
<h5>
Klim Advocates & Solicitors,
<br>
Plot
<br>
P.O Box
<br>
Kampala,Uganda
<br>
Tel: +256
<br>
Email: advocates@klim.co.ug
</h5>
</div>
</aside>
<aside id="tax-info">
<h3>Tax Status</h3>
<div>
<h5>
We are registered with the Uganda Revenue Authority for tax purposes. Our Tax Identification Number (TIN) is #
</h5>
</div>
</aside>
<aside id="conflicts-info">
<h3>Conflict of Interest</h3>
<div>
<h5>
The conduct of advocates is governed by the Advocates Act and Regulations made under it. An Advocate who receives instructions, which have a potential for conflict of interest, is required to disclose this to the client.
</h5>
</div>
</aside>
</div>
</div>
<footer class="container-fluid">
<div class="container">
<div class="col-md-4">
<h3>Services</h3>
<h4>
<ul>
<li>General Crime & Police Station</li>
<li>Fraud</li>
<li>International Criminal Defence</li>
<li>Military Law</li>
<li>Corporate Law</li>
</ul>
</h4>
</div>
<div class="col-md-4">
<h3>Advocates</h3>
<h4>
<ul>
<li>Bibangambah Richard/Partner</li>
<li>ETC</li>
</ul>
</h4>
</div>
<div class="col-md-4">
<h3>Legal</h3>
<h4>
<ul>
<li>Terms of Service</li>
<li>Privacy Policy</li>
<li>Copyright</li>
</ul>
</h4>
</div>
</div>
<div class="copyright">
<h5>Copyright © 2016 Klim Advocates</h5>
</div>
</footer>
</div>
<script src="js/jquery-1.12.3.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>