-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
579 lines (476 loc) · 26.8 KB
/
index.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
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
<!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">
<title>DotMatrix.LK</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="images/icon.png" />
<!-- Bootstrap -->
<link href="css/bootstrap-4.4.1.css" rel="stylesheet">
<link href="netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
<link href="netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- body code goes here -->
<nav class="navbar navbar-expand-lg navbar-light">
<img src="images/logo.png" class="img-fluid mx-4" alt="Placeholder image">
<!--<a class="navbar-brand" href="#">DotMatrix.LK</a>-->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent1" aria-controls="navbarSupportedContent1" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button>
<div class="collapse navbar-collapse" id="navbarSupportedContent1">
<ul class="navbar-nav mr-auto">
<li class="nav-item active"> <a class="nav-link nav-btn" href="#">Home <span class="sr-only">(current)</span></a> </li>
<li class="nav-item"> <a class="nav-link nav-btn" href="#about">About Us</a></li>
<li class="nav-item"> <a class="nav-link nav-btn" href="#team">Team</a></li>
<li class="nav-item"> <a class="nav-link nav-btn" href="#services">Our Services</a></li>
<li class="nav-item"> <a class="nav-link nav-btn" href="#contact">Contact Us</a></li>
</ul>
</form>
</div>
</nav>
<div id="carouselExampleIndicators1" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators1" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators1" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators1" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active d-flex justify-content-center"> <img class="mx-auto" src="images/1.jpg" alt="First slide">
<div class="carousel-caption">
<h5></h5>
<p></p>
</div>
</div>
<div class="carousel-item"> <img class="mx-auto" src="images/2.jpg" alt="Second slide">
<div class="carousel-caption">
<h5></h5>
<p></p>
</div>
</div>
<div class="carousel-item"> <img class="mx-auto" src="images/3.jpg" alt="Third slide">
<div class="carousel-caption">
<h5></h5>
<p></p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators1" 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="#carouselExampleIndicators1" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div>
<!--
<div id="carouselExampleIndicators1" class="carousel slide" data-ride="carousel" style="background-color: grey">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators1" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators1" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators1" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active"> <img class="d-block mx-auto" src="images/1.jpg" alt="First slide">
<div class="carousel-caption">
<h5></h5>
<p></p>
</div>
</div>
<div class="carousel-item"> <img class="d-block mx-auto" src="images/2.jpg" alt="Second slide">
<div class="carousel-caption">
<h5></h5>
<p></p>
</div>
</div>
<div class="carousel-item"> <img class="d-block mx-auto" src="images/3.jpg" alt="Third slide">
<div class="carousel-caption">
<h5></h5>
<p></p>
</div>
</div>
</div>
-->
<!--
<a class="carousel-control-prev" href="#carouselExampleIndicators1" 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="#carouselExampleIndicators1" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div>
<br>
-->
<br>
<div class="container my-5">
<section id="about" class="section team-section pb-4 wow fadeIn" data-wow-delay="0.3s" >
<!--Section: Content-->
<section class="team-section text-center dark-grey-text">
<!-- Section heading -->
<h3 class="font-weight-bold pb-2 mb-4">ABOUT US</h3>
<hr class="w-header my-4">
<!-- Section description -->
<p class="text-muted w-responsive mx-auto mb-5">At Dotmatrix.LK, we are passionate about creativity and innovation. As a leading advertising agency based in Colombo, Sri Lanka, we specialize in delivering exceptional services that meet and exceed our clients' expectations. Our team of talented professionals is dedicated to bringing you the best of our services, which include Photography, Graphic Design, 3D Modeling, and much more. We are committed to staying up-to-date with the latest industry trends and technologies, ensuring that we provide our clients with the most innovative and effective solutions. At Dotmatrix.LK, we believe in building long-lasting relationships with our clients, based on trust, integrity, and outstanding customer service. Let us help you take your brand to the next level and make a lasting impression with our cutting-edge advertising services.</p>
<h6 class="text-center col-lg-10 offset-lg-1 text-uppercase"><em>Why Choose Us? </em></h6>
<p class="text-center col-lg-10 offset-lg-1">Choosing Dotmatrix.LK means choosing a team of dedicated professionals who are committed to making your event a success. We understand that every event is unique and requires a personalized approach to capture its essence. Our team is available 24/7, 365 days a year, to ensure that we are there for you whenever you need us.
At Dotmatrix.LK, we believe that every photo is a single precious moment captured in an instance. That's why we approach every project with the utmost care and attention to detail, ensuring that we capture the essence of your event and preserve it for a lifetime of memories.
With our extensive experience and expertise, we provide innovative and creative solutions that meet and exceed our clients' expectations. We take pride in our commitment to outstanding customer service, building long-lasting relationships with our clients based on trust and integrity.
Choose Dotmatrix.LK and let us help you create unforgettable memories that will last a lifetime.</p>
<br>
</section>
<section id="team" class="section team-section pb-4 wow fadeIn" data-wow-delay="0.3s">
<div class="container my-5">
<!--Section: Content-->
<section class="team-section text-center dark-grey-text">
<!-- Section heading -->
<h3 class="font-weight-bold pb-2 mb-4">OUR AMAZING TEAM</h3>
<hr class="w-header my-4">
<!-- Section description -->
<p class="text-muted w-responsive mx-auto mb-5">Our team is made up of experienced professionals who are passionate about delivering exceptional results for our clients.</p>
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-lg-3 col-md-6 mb-4">
<div class="avatar mx-auto">
<img src="images/7.png" class="rounded-circle z-depth-1"
alt="Sample avatar">
</div>
<h5 class="font-weight-bold mt-4 mb-3">Kaveesh Lakvindu</h5>
<p class="text-uppercase blue-text"><strong>Founder</strong></p>
<p class="grey-text">A talented graphic designer and an undergraduate at NSBM. Kaveesh's passion for creativity and design is at the heart of Dotmatrix.LK's success. With his extensive knowledge and experience, Kaveesh brings a fresh and innovative approach to every project, ensuring that we deliver exceptional results that exceed our clients' expectations. As a leader, Kaveesh inspires our team to strive for excellence and to continuously improve our services. His dedication to delivering outstanding customer service and building long-lasting relationships with our clients is evident in everything we do at Dotmatrix.LK.</p>
<ul class="list-unstyled mb-0">
<!-- Facebook -->
<a class="p-2 fa-lg fb-ic" href="https://www.facebook.com/kaveeshlakvindu/">
<i class="fab fa-facebook-f blue-text"> </i>
</a>
<!-- Twitter -->
<a class="p-2 fa-lg tw-ic" href="https://twitter.com/KaveeshLakvindu">
<i class="fab fa-twitter blue-text"> </i>
</a>
<!-- Instagram -->
<a class="p-2 fa-lg ins-ic" href="https://www.instagram.com/__mr.kl__/">
<i class="fab fa-instagram blue-text"> </i>
</a>
</ul>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-lg-3 col-md-6 mb-4">
<div class="avatar mx-auto">
<img src="images/6.png" class="rounded-circle z-depth-1"
alt="Sample avatar">
</div>
<h5 class="font-weight-bold mt-4 mb-3">Vinhindu Nenuka</h5>
<p class="text-uppercase blue-text"><strong>Director</strong></p>
<p class="grey-text">Vinhindu is a talented graphic designer and an undergraduate at SLIT. With his keen eye for detail and creativity, Vinhindu plays a crucial role in the success of Dotmatrix.LK. He brings a unique perspective to every project, ensuring that we deliver personalized solutions that meet our clients' needs. As a Director, Vinhindu is committed to fostering a collaborative and inclusive work environment that encourages creativity and innovation. His dedication to building strong relationships with our clients and delivering exceptional customer service is evident in everything we do at Dotmatrix.LK.</p>
<ul class="list-unstyled mb-0">
<!-- Facebook -->
<a class="p-2 fa-lg fb-ic" href="https://www.facebook.com/profile.php?id=100041086025274">
<i class="fab fa-facebook-f blue-text"> </i>
</a>
<!-- Instagram -->
<a class="p-2 fa-lg ins-ic" href="https://www.instagram.com/vihindu_allen/">
<i class="fab fa-instagram blue-text"> </i>
</a>
</ul>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-lg-3 col-md-6 mb-4">
<div class="avatar mx-auto">
<img src="images/5.png" class="rounded-circle z-depth-1"
alt="Sample avatar">
</div>
<h5 class="font-weight-bold mt-4 mb-3">Supun Bandara</h5>
<p class="text-uppercase blue-text"><strong>Director</strong></p>
<p class="grey-text">Our Director and a talented photographer, currently pursuing his undergraduate degree at Deakin Australia. With his passion for photography and dedication to excellence, Supun plays an integral role in the success of Dotmatrix.LK. He brings a wealth of knowledge and experience to every project, ensuring that we capture the essence of every event and create unforgettable memories for our clients. As a Director, Supun is committed to delivering exceptional customer service and building lasting relationships with our clients based on trust and integrity. At Dotmatrix.LK, we are proud to have Supun as part of our team, and we know that his commitment to excellence and his passion for photography will continue to drive our success.</p>
<ul class="list-unstyled mb-0">
<!-- Facebook -->
<a class="p-2 fa-lg fb-ic" href="https://www.facebook.com/supun.bandara.7587">
<i class="fab fa-facebook-f blue-text"> </i>
</a>
</ul>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-lg-3 col-md-6 mb-4">
<div class="avatar mx-auto">
<img src="images/4.png" class="rounded-circle z-depth-1"
alt="Sample avatar">
</div>
<h5 class="font-weight-bold mt-4 mb-3">Chathur Samarasingha</h5>
<p class="text-uppercase blue-text"><strong>Photographer</strong></p>
<p class="grey-text">Meet Chathur Samarasingha, our talented photographer and artist. With his unique perspective and creative eye, Chathur brings a fresh and innovative approach to every project he works on. His passion for photography and art is evident in every shot he takes, and he has a remarkable ability to capture the essence of every moment. At Dotmatrix.LK, we are proud to have Chathur as part of our team, and we know that his dedication to his craft will help us continue to deliver outstanding results for our clients. Choose Chathur and let him help you capture your special moments and create unforgettable memories that you will cherish forever.</p>
<ul class="list-unstyled mb-0">
<!-- Facebook -->
<a class="p-2 fa-lg fb-ic" href="https://www.facebook.com/chathur.samarasinghe">
<i class="fab fa-facebook-f blue-text"> </i>
</a>
<!-- Instagram -->
<a class="p-2 fa-lg ins-ic" href="https://www.instagram.com/chathur.s">
<i class="fab fa-instagram blue-text"> </i>
</a>
</ul>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</section>
<!--Section: Content-->
</div>
<div class="container my-5">
<!-- Section -->
<section id="services" class="section pb-5 wow fadeIn" data-wow-delay="0.3s">
<h3 class="font-weight-bold text-center dark-grey-text pb-2">OUR SERVICES</h3>
<hr class="w-header my-4">
<p class="lead text-center text-muted pt-2 mb-5">Our team of experts brings a wealth of knowledge and experience to every project, providing you with innovative solutions and unparalleled expertise.</p>
<div class="row">
<div class="col-md-6 col-xl-3 mb-4">
<a class="card text-center" href="tel:0771271579">
<div class="card-body">
<div class="mt-4 pt-2"><i class="far fa-calendar fa-4x"></i></div>
<h5 class="font-weight-normal my-4 py-2">EVENT PLANING</h5>
<div class="mb-4">Elevate your gaming event to the next level with our expert event planning services. From venue selection to custom themes, we'll create an unforgettable experience for you and your guests. Our team will take care of every detail, ensuring a seamless and engaging event that will keep your attendees talking long after it's over. Let us help you create a one-of-a-kind gaming event that exceeds your expectations.</div>
</div>
</a>
</div>
<div class="col-md-6 col-xl-3 mb-4">
<a class="card text-center" href="https://forms.gle/wi7jYNxrXxQDX91y8">
<div class="card-body">
<div class="mt-4 pt-2"><i class="fas fa-camera fa-4x grey-text"></i></div>
<h5 class="font-weight-normal my-4 py-2">EVENT PHOTOGRAPHY</h5>
<div class="mb-4">Capture the magic of your event with our expert event photography services. Our team of skilled photographers will document every moment, creating a stunning visual narrative that tells the story of your event. From candid shots to posed portraits, we'll capture the essence of your occasion and preserve it for a lifetime of memories. Let us help you relive the special moments of your event through our beautiful and professional photography.</div>
</div>
</a>
</div>
<div class="col-md-6 col-xl-3 mb-4">
<a class="card text-center" href="tel:0771271579">
<div class="card-body">
<div class="mt-4 pt-2"><i class="fas fa-chart-simple fa-4x"></i></div>
<h5 class="font-weight-normal my-4 py-2">DIGITAL MARKETING</h5>
<div class="mb-4">Boost your brand's online visibility and connect with your target audience through our expert digital marketing services. From social media to search engine optimization, we'll create a personalized strategy to help your business thrive in the digital world. Let us help you achieve your marketing goals and stand out in a crowded online marketplace.</div>
</div>
</a>
</div>
<div class="col-md-6 col-xl-3">
<a class="card text-center" href="tel:0771271579">
<div class="card-body">
<div class="mt-4 pt-2"><i class="fas fa-file-contract fa-4x grey-text"></i></div>
<h5 class="font-weight-normal my-4 py-2">BRANDING</h5>
<div class="mb-4">Craft a unique and memorable brand identity that speaks to your target audience with our expert branding services. From logo design to brand messaging, we'll help you establish a consistent and impactful brand that resonates with your customers. Let us help you stand out in a crowded marketplace and build a strong foundation for your business's success.</div>
</div>
</a>
</div>
</div>
</section>
<!-- Section -->
</div>
<!-- Clients
<div class="py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid img-brand d-block mx-auto" src="images/CR Logo.png" alt="..." aria-label="Crepe Runner Logo" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="https://svrp.net"><img class="img-fluid img-brand d-block mx-auto" src="images/unnamed (2).png" alt="..." aria-label="SVRP Logo" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="#!"><img class="img-fluid img-brand d-block mx-auto" src="images/SriVerse_Logo.png" alt="..." aria-label="SriVerse Logo" /></a>
</div>
<div class="col-md-3 col-sm-6 my-3">
<a href="https://nsbm.ac.lk"><img class="img-fluid img-brand d-block mx-auto" src="images/nsbm.png" alt="..." aria-label="NSBM Logo" /></a>
</div>
</div>
</div>
</div>
-->
<div class="container z-depth-1 my-5 px-0">
<!--Section: Content-->
<section id="contact" class="section team-section pb-4 wow fadeIn" data-wow-delay="0.3s" >
<!-- Section heading -->
<h3 class="font-weight-bold text-center dark-grey-text pb-2">CONTACT US</h3>
<section class="my-md-5 contact-image">
<div class="rgba-black-strong rounded p-5">
<form class="mx-md-5" action="">
<div class="row">
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body px-4">
<!-- Name -->
<div class="md-form md-outline mt-0">
<input type="text" id="name" class="form-control">
<label for="name">Your Name</label>
</div>
<!-- Email -->
<div class="md-form md-outline">
<input type="text" id="email" class="form-control">
<label for="email">Your Email Address</label>
</div>
<!-- Message -->
<div class="md-form md-outline">
<textarea id="message" class="md-textarea form-control" rows="3"></textarea>
<label for="message">Your Message</label>
</div>
<button type="submit" class="btn btn-primary btn-md btn-block ml-0 mb-0">Submit inquiry</button>
</div>
</div>
</div>
<div class="card col-md-5 offset-md-1 mb-4 white-text">
<div class="card-body">
<h5 class="font-weight-bold">Address</h5>
<div class="">DotMatrix.LK(PVT)Ltd</div>
<div class="">Kaduwela, Korathota</div>
<div class="mb-4">Sri Lanka</div>
<h5 class="font-weight-bold">Phone</h5>
<p class="mb-4 pb-2">+ 94 112 074 860</p>
<h5 class="font-weight-bold">Email</h5>
<p>[email protected]</p>
</div>
</div>
</div>
</form>
</div>
</section>
</section>
<!--Section: Content-->
</div>
<!-- Footer -->
<footer class="page-footer font-small blue-grey lighten-5">
<div class="container">
<!-- Grid row-->
<div class="row py-4 d-flex align-items-center" style="background-color: #d21f47; border-radius:15px;">
<!-- Grid column -->
<div class="col-md-5 text-center text-md-left" style="margin: 1rem;">
<h6 class="mb-0"><strong>Get connected with us on social networks!</strong></h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-6 text-center text-md-right" style="margin: 1rem;">
<!-- Facebook -->
<a class="fb-ic" href="https://www.facebook.com/dotmatrix.lk">
<i class="fab fa-facebook-f mr-4 social-icon"> </i>
</a>
<!-- Twitter -->
<a class="tw-ic" href="https://twitter.com/DotMatrixLK">
<i class="fab fa-twitter mr-4 social-icon"> </i>
</a>
<!-- Tik Tok-->
<a class="gplus-ic" href="https://www.tiktok.com/@dotmatrix.lk">
<i class="fab fa-tiktok mr-4 social-icon"> </i>
</a>
<!--Linkedin -->
<a class="li-ic" href="https://www.linkedin.com/company/dotmatrix-lk">
<i class="fab fa-linkedin-in mr-4 social-icon"> </i>
</a>
<!--Instagram-->
<a class="ins-ic" href="">
<i class="fab fa-instagram social-icon"> </i>
</a>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
</div>
<!-- Footer Links -->
<div class="container text-center text-md-left mt-5">
<!-- Grid row -->
<div class="row mt-3 dark-grey-text">
<!-- Grid column -->
<div class="col-md-3 col-lg-4 col-xl-3 mb-4">
<!-- Content -->
<h6 class="text-uppercase font-weight-bold">DotMatrix.LK</h6>
<hr class="teal accent-3 mb-4 mt-0 d-inline-block mx-auto" style="width: 60px;">
<p>Dotmatrix.LK is a leading Advertising agency based in Colombo, Sri Lanka. Enterprise by an industrious bunch of individuals dedicated to bringing you the best of our services. We bring you a wide range of services consisting of Photography, Graphic Design, 3D Modeling, and much more.</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase font-weight-bold">Our Services</h6>
<hr class="teal accent-3 mb-4 mt-0 d-inline-block mx-auto" style="width: 60px;">
<p class="footer-link">
<a class="dark-grey-text" href="#services">Event Planing</a>
</p>
<p>
<a class="dark-grey-text" href="#services">Event Photography</a>
</p>
<p>
<a class="dark-grey-text" href="#services">Digital Marketing</a>
</p>
<p>
<a class="dark-grey-text" href="#services">Branding</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase font-weight-bold">Useful links</h6>
<hr class="teal accent-3 mb-4 mt-0 d-inline-block mx-auto" style="width: 60px;">
<p>
<a class="dark-grey-text" href="#home">Home</a>
</p>
<p>
<a class="dark-grey-text" href="#contact">Contact Us</a>
</p>
<p>
<a class="dark-grey-text" href="#about">About Us</a>
</p>
<p>
<a class="dark-grey-text" href="#privacy">Privacy Policy</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<!-- Links -->
<h6 class="text-uppercase font-weight-bold">Contact</h6>
<hr class="teal accent-3 mb-4 mt-0 d-inline-block mx-auto" style="width: 60px;">
<p>
<i class="fas fa-home mr-3"></i> DM.LK, Colombo, Sri Lanka</p>
<p>
<i class="fas fa-envelope mr-3"></i> [email protected]</p>
<p>
<i class="fas fa-phone mr-3"></i> + 94 112 074 860</p>
<p>
<i class="fas fa-print mr-3"></i> + 94 112 074 860</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
<!-- Copyright -->
<div class="footer-copyright text-center text-black-50"><strong>© 2023 Copyright <a class="dark-grey-text" href="https://dotmatrix.lk/"> DotMatrix.LK(PVT)LTD</a></strong>
</div>
<div class="footer-copyright text-center text-black-50"><strong>❤️ Design By <a class="dark-grey-text" href="https://dotmatrix.lk/"> K.L Hettiarachchi</a></strong>
</div>
<br>
<!-- NSBM Logo -->
<center>
<a href="https://www.nsbm.ac.lk/"><img src="images/nsbm.png" class="img-fluid mx-4" alt="Placeholder image" ></a>
</center>
<!-- Copyright -->
</footer>
<!-- Footer -->
<!-- Messenger Chat Plugin Code -->
<div id="fb-root"></div>
<!-- Your Chat Plugin code -->
<div id="fb-customer-chat" class="fb-customerchat">
</div>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap-4.4.1.js"></script>
<script>
var chatbox = document.getElementById('fb-customer-chat');
chatbox.setAttribute("page_id", "294591484302048");
chatbox.setAttribute("attribution", "biz_inbox");
</script>
<!-- Your SDK code -->
<script>
window.fbAsyncInit = function() {
FB.init({
xfbml : true,
version : 'v16.0'
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
</body>
</html>