-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
525 lines (423 loc) · 15.1 KB
/
Copy pathteam.html
File metadata and controls
525 lines (423 loc) · 15.1 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
521
522
523
524
525
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team-Bradley & Addison Law Firm</title>
<style>
/* Prevent horizontal scrolling */
html, body {
margin: 0;
padding: 0;
width: 100%;
overflow-x: hidden;
font-family: "Trebuchet MS", Trebuchet, serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Navigation Menu */
nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1em 1em;
background-color: rgba(255, 255, 255, 0.8);
position: fixed;
top: 0;
left: 0;
right:0;
width: 90%;
height:5%;
z-index: 9;
}
.logo-container {
display: flex;
align-items: center;
flex-shrink: 0;
}
.logo-container img {
height: 150px;
width: auto;
}
.nav-links {
display: flex;
justify-content: center;
align-items: center;
flex-grow: 1;
margin-left: 2em;
}
.nav-links a {
color: rgba(128, 0, 0, 1);
padding: 0.5em 1em;
text-decoration: none;
font-weight: bold;
font-size: 14px;
}
.nav-links a:hover {
background-color: rgba(128, 0, 128, 0.1);
color:black
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
min-width: 200px;
z-index: 1;
}
.dropdown-content a {
color: rgba(128, 0, 0, 1);
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: rgba(128, 0, 128, 0.1);
}
.dropdown:hover .dropdown-content {
display: block;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 1em 0;
margin-top: auto;
width: 100%;
}
/* Left and Right sections for the rest of the page content */
.content-container {
display: flex;
flex-direction: row;
width: 100%;
padding: 20px;
}
.left-section,
.right-section {
flex: 1;
padding: 20px;
overflow-y: auto;
}
/* Side Menu Styles */
.side-menu {
height: 80%;
width: 0;
position: fixed;
top: 0;
left: 0;
background-color: rgba(128, 0, 0, 0.9);
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
z-index: 99;
}
.side-menu a {
padding: 10px 15px;
text-decoration: none;
font-size: 20px;
color: white;
display: block;
transition: 0.3s;
}
.side-menu a:hover {
background-color: rgba(128, 0, 128, 0.1);
}
.side-menu .close-btn {
position: absolute;
top: 0;
right: 25px;
font-size: 20px;
margin-left: 50px;
color: white;
cursor: pointer;
}
/* Media Queries to make the menu responsive */
@media screen and (max-width: 768px) {
.nav-links {
display: none; /* Hide navigation links */
}
.menu-icon {
display: block;
font-size: 30px;
cursor: pointer;
color: black;
z-index: 100;
}
.side-menu {
width: 0; /* Start with the menu hidden */
}
/* When side menu is open, shift the content */
body.shifted {
margin-left: 250px; /* Shift content to the right */
}
.content-container {
transition: margin-left 0.5s; /* Smooth transition */
}
}
.background-container {
position: relative;
width: 100%;
height: 300px;
background-image: url('img19.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 1;
border-bottom: 5px solid red; /* Red underline */
}
}
@keyframes slide-in {
from {
transform: translate(-50%, -60%);
opacity: 0;
}
to {
transform: translate(-50%, -50%);
opacity: 1;
}
}
</style>
</head>
<body>
<!-- Navigation Menu -->
<nav>
<div class="logo-container">
<img src="LLP LOGO.jpg" alt="Bradley & Addison Logo">
</div>
<div class="nav-links">
<a href="Bradley & Addison LLB.html">WHO WE ARE</a>
<a href="services.html">WHAT WE DO</a>
<a href="about.html">TRANSACTION</a>
<a href="team.html">TEAM</a>
<a href="services.html">PUBLICATION</a>
<a href="careers.html">CAREERS</a>
<div class="dropdown">
<a href="javascript:void(0)">CLIENTS <span class="arrow">▼</span></a>
<div class="dropdown-content">
<a href="FEEDBACK.html">CLIENTS FEEDBACK & TESTIMONIALS</a>
<a href="ASSOCIATION.html">ASSOCIATION</a>
</div>
</div>
<a href="contact.html">CONTACT</a>
</div>
<!-- Menu Icon for Small Screens -->
<span class="menu-icon" onclick="openSideMenu()">☰</span>
</nav>
<!-- Side Menu -->
<div id="sideMenu" class="side-menu">
<a href="javascript:void(0)" class="close-btn" onclick="closeSideMenu()">×</a>
<a href="Bradley & Addison LLB.html">WHO WE ARE</a>
<a href="services.html">WHAT WE DO</a>
<a href="about.html">TRANSACTION</a>
<a href="team.html">TEAM</a>
<a href="services.html">PUBLICATION</a>
<a href="careers.html">CAREERS</a>
<a href="FEEDBACK.html">CLIENTS FEEDBACK & TESTIMONIALS</a>
<a href="ASSOCIATION.html">ASSOCIATION</a>
<a href="contact.html">CONTACT</a>
</div>
<!-- Background Image Section with Red Underline -->
<div class="background-container">
<div class="background-text">
</div>
</div>
<img src="img31.jpg">
<p> Legal 500 says, our lawyers are highly talented, reliable, experienced, sharp and straight forward. Our clients expect the best from us, and we aim to surpass their expectations,starting with the quality of our people. </p>
<p> What our clients says about our team:</p>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Circular Text Spaces</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 10vh; /* Full viewport height */
margin: 0; /* Remove default margin */
background-color: #f0f0f0; /* Light background for contrast */
}
.circle-container {
display: flex; /* Use Flexbox to arrange circles */
flex-direction: column; /* Arrange circles in a column */
align-items: center; /* Center the circles horizontally */
gap: 30px; /* Space between rows */
}
.row {
display: flex; /* Use Flexbox to arrange circles in a row */
gap: 30px; /* Space between circles */
}
.circular-text {
width: 150px; /* Increased size */
height: 150px; /* Increased size */
background-color: #8B0000; /* Wine color */
color: white; /* Text color */
border-radius: 50%; /* Makes the div circular */
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 12px; /* Adjust font size as needed */
position: relative;
overflow: hidden;
transition: transform 0.3s; /* Smooth transition for hover effect */
}
.circular-text:hover {
transform: scale(1.1); /* Slightly enlarge on hover */
}
.circular-text span {
display: inline-block;
transform: rotate(-5deg); /* Adjust rotation as needed */
}
</style>
</head>
<body>
<p><p><p><div class="circle-container">
<div class="row">
<div class="circular-text"><span>... clients praise the group's excellent turnaround and availability
Chambers Global
2015 Edition</span></div>
<div class="circular-text"><span><p>...they are really efficient and very responsive.</p>
Chambers Global
2015 edition</span></div>
<div class="circular-text"><span><p>...are business-savvy, responsive and understands what the client wants to achieve</p>
Chamber Global
2015 edition</span></div>
<div class="circular-text"><span>cross-border experience is appreciated by multinational companies and financial institutions
CHAMBERS GLOBAL
- 2014</span></div>
<div class="circular-text"><span><p>... clients appreciate the higher quality of this firm's services.</p>
Chambers Global
- 2013</span></div>
</div>
<div class="row">
<div class="circular-text"><span><p>...the firm's dedication to quality of service results in an efficient handling of matters</p>
CHAMBER GLOBAL
- 2012 edition</span></div>
<div class="circular-text"><span><p>... sources are impressed by his forward-looking attitude and excellent potentials</p>
Chambers Global
- 2012 edition</span></div>
<div class="circular-text"><span><p>..understands foreign companies' needs and the complex local landscape</p>
CHAMBERS GLOBAL
- 2011 edition</span></div>
<div class="circular-text"><span><p>... their customer services is first-rate</p>
(CEO/President - The Whitaker Group)
Rosa Whitaker</span></div>
<div class="circular-text"><span><p>...their customer service is first-rate./p>
Leading Financial Law firms
IFLR 1000 - 2010 edition<</span></div>
</div>
<div class="row">
<div class="circular-text"><span><p>...understands foreign companies' needs and the complex local landscape</p>
Chambers Global
2011 edition</span></div>
<div class="circular-text"><span><p>..it is good value for money</p>
IFLR 1000
2010 edition</span></div>
<div class="circular-text"><span><p>.. excellent attention to detail</p>
Chambers Global
- 2011</span></div>
<div class="circular-text"><span><p>... dedicated but also knowledgeable</p>
Chambers Global
- 2011 edition</span></div>
<div class="circular-text"><span><p>... not intimidated by anything</p>
Chambers Global
- 2011 edition</span></div>
</div>
</div></p></p></p>
</body>
</html>
<style>
body {
height: 1300px; /* Just to make sure we have scrollable content */
margin: 0;
font-family: Arial, sans-serif;
}
/* Button Styling */
#back-to-top {
position: fixed;
bottom: 20px; /* 20px from the bottom */
right: 20px; /* 20px from the right */
padding: 10px 20px;
font-size: 16px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
display: none; /* Hide the button initially */
}
#back-to-top:hover {
background-color: #0056b3; /* Darker blue on hover */
}
</style>
</head>
<body>
<!-- Back to Top Button -->
<button id="back-to-top">Back to Top</button>
<script>
// Get the button
const backToTopButton = document.getElementById('back-to-top');
// Show or hide the button based on scroll position
window.onscroll = function() {
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
backToTopButton.style.display = 'block';
} else {
backToTopButton.style.display = 'none';
}
};
// Scroll to the top when the button is clicked
backToTopButton.onclick = function() {
window.scrollTo({ top: 0, behavior: 'smooth' });
};
</script>
<style>
footer {
display: flex;
flex-direction: column; /* Stack the paragraphs vertically */
justify-content: right; /* Vertically center the content */
align-items: left; /* Horizontally center the content */
text-align: left; /* Center the text */
padding: 20px; /* Optional padding for spacing */
width: 100%; /* Make sure it spans the full width */
background-color: #333; /* Optional background color */
color: white; /* Text color */
}
footer p {
margin: 5px 0; /* Add some spacing between paragraphs */
}
footer a {
color: #f0f0f0; /* Optional: Change the link color */
text-decoration: none;
}
footer a:hover {
text-decoration: underline; /* Optional: Underline on hover */
}
</style>
<!-- Footer -->
<footer>
<font size="3"><p>© 2020 Bradley & Addison LLP. All rights reserved.</p>
<p>Office Location: Apollolaan 14, 1078 AB Amsterdam, Netherlands</p>
<p>Telephone: +31 (0)20 123 4567</p>
<p>Email: <a href="mailto:bradleyaddison@judiciarys.com">bradleyaddison@judiciarys.com</a></p></font>
</footer>
<script>
// Open Side Menu
function openSideMenu() {
document.getElementById("sideMenu").style.width = "250px";
document.body.classList.add("shifted");
}
// Close Side Menu
function closeSideMenu() {
document.getElementById("sideMenu").style.width = "0";
document.body.classList.remove("shifted");
}
</script>
</body>
</html>