-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
648 lines (601 loc) · 31 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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
<!DOCTYPE html>
<html lang="en">
<head>
<!-- basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- mobile metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- site metas -->
<title> Rotaract Club of Buloba </title>
<meta name="keywords" content="Rotaract, Rotaract Club, Rotaract Club of Buloba, RctBuloba, Rotary">
<meta name="description"
content="Rotaract Club of Buloba is a great way to develop your leadership skills, and to make a difference in the world.">
<meta name="author" content="code-maestro">
<!-- bootstrap css -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- style css -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/board.css">
<!-- Responsive-->
<link rel="stylesheet" href="css/responsive.css">
<!-- favicon -->
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="iamges/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="iamges/android-chrome-512x512.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<!-- Scrollbar Custom CSS -->
<link rel="stylesheet" href="css/jquery.mCustomScrollbar.min.css">
<!-- Tweaks for older IEs-->
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<!-- owl stylesheets -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css"
media="screen">
<!-- PAGE VISITS AND VIEW ANALYTICS -->
<script defer src="https://us.umami.is/script.js" data-website-id="5be52311-1d07-4418-948b-94c37f32ca1e"></script>
</head>
<body>
<!-- header section start -->
<div class="header_section">
<div class="mobile_menu">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="logo_mobile">
<a href="index.html">
<img loading="lazy" src="https://ucarecdn.com/bc5cd442-bb57-47ff-8459-71dfe9b202cd/-/preview/690x690/"
alt="Rotaract Logo">
</a>
<a href="index.html">
<div class="vertical-line-mobile"></div>
</a>
<a href="index.html">
<img loading="lazy" src="images/rotary_hope_removebg_icon.ico" alt="Rotaract Logo">
</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link " href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link " href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="container">
<div class="logo">
<a href="index.html">
<img loading="lazy" src="https://ucarecdn.com/bc5cd442-bb57-47ff-8459-71dfe9b202cd/-/preview/690x690/"
alt="Rotaract Logo">
</a>
<a href="index.html">
<div class="vertical-line"></div>
</a>
<a href="index.html">
<img loading="lazy" src="images/rotary_hope_removebg_icon.ico" alt="Rotaract Logo">
</a>
</div>
<div class="menu_main">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact us</a></li>
</ul>
</div>
</div>
<!-- header section end -->
<!-- banner section start -->
<div class="banner_section layout_padding">
<div class="container">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<h1 class="your_text">The Rotaract Club of Buloba </h1>
<p class="there_text">Welcome dear visitor, we appreciate your visit!!</p>
<div class="start_bt">
<div class="read_bt"><a href="about.html">Read More</a></div>
</div>
</div>
<div class="carousel-item">
<h1 class="your_text">Community Growth <br>and Development </h1>
<p class="there_text">We aim to bring together the youth to exchange ideas with leaders in the community
and develop leadership and professional skills.</p>
<div class="start_bt">
<div class="read_bt"><a href="about.html">Read More</a></div>
</div>
</div>
<div class="carousel-item">
<h1 class="your_text">Friendship <br>and Togetherness </h1>
<p class="there_text">We make sure you leave our Rotaract sessions with not only a amile but also new
friends and connections.</p>
<div class="start_bt">
<div class="read_bt"><a href="about.html">Read More</a></div>
</div>
</div>
<div class="carousel-item">
<h1 class="your_text">Our <br>Fellowships</h1>
<p class="there_text">We meet every Tuesday from 6-7PM at Joggies Recreational Center, Bulaga, Uganda.
</p>
<div class="start_bt">
<div class="read_bt"><a href="about.html">Read More</a></div>
</div>
</div clav>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="banner_section_2">
<div class="row">
<div class="col-lg-3 col-sm-6 padding_0">
<div class="box_main">
<div class="internet_icon">01</div>
<h4 class="broadband_text">Community</h4>
<p class="many_text">We do all we can to develop our Uganda</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 padding_0">
<div class="box_main active">
<div class="internet_icon">02</div>
<h4 class="broadband_text active">Togetherness</h4>
<p class="many_text active">We ensure that we face challenges as a team</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 padding_0">
<div class="box_main">
<div class="internet_icon">03</div>
<h4 class="broadband_text">Fun</h4>
<p class="many_text">We make sure to keep smiles on our faces</p>
</div>
</div>
<div class="col-lg-3 col-sm-6 padding_0">
<div class="box_main active">
<div class="internet_icon">04</div>
<h4 class="broadband_text">Career</h4>
<p class="many_text"> Events and training sessions to build skills. </p>
</div>
</div>
</div>
</div>
</div>
<!-- banner section end -->
</div>
<!-- about section start -->
<div class="about_section layout_padding">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="image_1"><img loading="lazy" src="images/Rotaract-gong.JPG"></div>
</div>
<div class="col-md-6">
<h1 class="live_text">ABOUT US</h1>
<p class="lorem_text">
Established on 29th January 2020, Rotaract Club Of Buloba are a spirited and dedicated group of young
change-makers with a vision
to transform our community and beyond. United by our shared passion for service and social impact, we
embarked on this incredible journey with the firm belief that together, we can make a lasting difference.
<li></li>
</p>
<div class="online_bt_main">
<div class="read_bt1"><a href="about.html">Read More</a></div>
</div>
</div>
</div>
</div>
</div>
<!-- about section end -->
<!-- Projects start-->
<div class="product_section layout_padding">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1 class="live_text my_text_white">OUR PROJECTS</h1>
<p class="lorem_text" id="president_speech">
From day one, the Rotaract Club of Buloba has been committed to creating positive change through
meaningful
community projects, impactful initiatives, and collaborative partnerships. We believe in the power of
compassion and the strength of unity, working tirelessly to uplift lives and support those in need.
</p>
<div class="online_bt_main">
<div class="read_bt1"><a href="projects.html">Read More</a></div>
</div>
</div>
<div class="col-md-6">
<div class="image_1 col-sm-6"><img loading="lazy" src="images/alex_rotaract.jpg"></div>
</div>
</div>
</div>
</div>
<!-- Projects corner end-->
<!-- Rotaract Board start-->
<div class="board_section layout_padding">
<div class="container">
<h1 class="Success_text my_color" id="my-board-heading">OUR BOARD</h1>
<h2 class="Success_text my_color" id="my-board-heading2">2023/2024</h2>
<div class="board-container">
<div class="cardd">
<h3 class="card__title"> Lynette Ddungu </h3>
<div class="card__date">
President
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
<div class="cardd">
<h3 class="card__title"> Marvin Oyesigye </h3>
<div class="card__date">
Vice President
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
<div class="cardd">
<h3 class="card__title"> Lutwama Davis </h3>
<div class="card__date">
Secretary
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
<div class="cardd">
<h3 class="card__title"> Brenda Achiro </h3>
<div class="card__date">
Treasurer
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
<div class="cardd">
<h3 class="card__title"> Paul Mukasa </h3>
<div class="card__date">
Club Admin
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
<div class="cardd">
<h3 class="card__title"> Violette Nassiwa </h3>
<div class="card__date">
Projects Director
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
<div class="cardd">
<h3 class="card__title"> Catherine Zalwango </h3>
<div class="card__date">
PR Director
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
<div class="cardd">
<h3 class="card__title"> Amos Lwanga </h3>
<div class="card__date">
Membership Director
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
<div class="cardd">
<h3 class="card__title"> Agaba Conrad </h3>
<div class="card__date">
SPA/SO
</div>
<div class="card__arrow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="15" width="15">
<path fill="#fff"
d="M13.4697 17.9697C13.1768 18.2626 13.1768 18.7374 13.4697 19.0303C13.7626 19.3232 14.2374 19.3232 14.5303 19.0303L20.3232 13.2374C21.0066 12.554 21.0066 11.446 20.3232 10.7626L14.5303 4.96967C14.2374 4.67678 13.7626 4.67678 13.4697 4.96967C13.1768 5.26256 13.1768 5.73744 13.4697 6.03033L18.6893 11.25H4C3.58579 11.25 3.25 11.5858 3.25 12C3.25 12.4142 3.58579 12.75 4 12.75H18.6893L13.4697 17.9697Z">
</path>
</svg>
</div>
</div>
</div>
</div>
</div>
<!-- Rotaract Board end-->
<!-- President's corner start-->
<div class="product_section layout_padding">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="image_2 col-sm-6"><img loading="lazy" src="images/photo5.JPG"></div>
</div>
<div class="col-md-6">
<h1 class="live_text my_text_white">PRESIDENT'S CORNER</h1>
<p class="lorem_text" id="president_speech">
Hope is a powerful thing. It inspires us to do the impossible
and helps us carry on during difficult times. As the Hope Creator
President, I encourage club members to first of all have hope in
themselves so as to spread it to our communities. Wishing us a
great rotary year as we move as a single unit to achieve our hopes.
</p>
</div>
</div>
</div>
</div>
<!-- President's corner end-->
<!-- gallery section start -->
<div class="classes_section layout_padding">
<div class="container">
<h1 class="popular_text">Our Gallery</h1>
<h6 class="classes_text">"Because every picture has a story to tell"</h6>
<div class="projects_section2">
<div class="container_main2">
<div class="row">
<div class="col-sm-4">
<div class="container_main1">
<img src="images/book_donation_project_2.jpg" loading="lazy" alt="Avatar" class="image"
style="width:100%">
<div class="middle">
<a href="gallery.html">
<div class="text">
VIEW MORE
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="container_main1">
<img src="images/installation2.jpg" loading="lazy" alt="Avatar" class="image" style="width:100%">
<div class="middle">
<a href="gallery.html">
<div class="text">
VIEW MORE
</div>
</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="container_main1">
<img src="images/outreach_project_2.jpg" loading="lazy" alt="Avatar" class="image" style="width:100%">
<div class="middle">
<a href="gallery.html">
<div class="text">
VIEW MORE
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="readmore_bt">
<div class="read_bt2"><a href="gallery.html"> VIEW MORE </a></div>
</div>
</div>
</div>
</div>
<!-- gallery section end -->
<!-- success section start -->
<div class="success_section layout_padding">
<div class="container">
<h1 class="our_text">OUR</h1>
<h1 class="Success_text"> Story</h1>
<p class="lorem_long_text">The Rotaract Club of Buloba, a child of the Rotary Club of Buloba is a one that was
birthed from ambition and vision of the youthful community of Buloba, Uganda. We seek to not only make our
community but also the world a better place</p>
<div class="readmore_bt">
<div class="read_bt3"><a href="about.html">Read More</a></div>
</div>
</div>
</div>
<!-- success section end -->
<!-- contact section start -->
<div class="contact_section layout_padding">
<div class="container-fluid">
<div class="contact_text"><b>CONTACT</b> <span class="contact_us_text">US</span></div>
<div class="contact_section2">
<div class="row">
<div class="col-md-6">
<div class="map-responsive">
<iframe
src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJdW1MMF-kfRcRj1L9omKO8LA&key=AIzaSyDzNuBqDuKAQCC-iU_5rY0wd1E5LaBCLZA"
width="600" height="600" frameborder="0" style="border:0; width: 100%;" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-6">
<h1 class="feedback_msg" id="success-msg"> </h1>
<!-- <h1 class="feedback_msg" id="err-msg"> </h1> -->
<div class="mail_section">
<!-- Sending Email Form -->
<!-- <div> -->
<form enctype="multipart/form-data" id="sendEmailIForm" name="sendEmailIForm">
<input type="text" id="user_name" class="mail_text" placeholder="Name" name="Name" required>
<input type="email" id="user_email" class="mail_text" placeholder="Email" name="Email" required>
<input type="number" id="user_phone_no" class="mail_text" placeholder="Phone Number"
name="Phone Number" required>
<textarea class="massage_text" placeholder="Message" rows="5" id="user_comment" name="Message"
required></textarea>
<button class="send_bt" id="ss" type="button" onclick="sendingEmail('sendEmailIForm')"> send </button>
</form>
<!-- </div> -->
<div class="Locations_text"><img src="images/map-icon.png" loading="lazy"><span class="map_icon">
Joggies
Recreational
Center </span></div>
<div class="Locations_text"><img src="images/call-icon.png" loading="lazy"><span class="map_icon"> +256
703 747771
</span>
</div>
<div class="Locations_text"><img src="images/mail-icon.png" loading="lazy"><span class="map_icon">
rotaract9211buloba@gmail.com </span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- contact section end -->
<!-- footer section start -->
<div class="footer_section layout_padding">
<div class="container">
<div class="row">
<div class="col-lg-4 col-sm-6">
<h1 class="customer_text">About</h1>
<p class="footer_lorem_text">We are a community consisting of loving and energetic youth that live to serve
our community voluntarily for a better society. We follow the Rotaract goals and ensure to develop
together
as a team.
</p>
<h1 class="customer_text">Links</h1>
<p class="footer_lorem_text"><a class="my_links" target="_blank"
href="https://www.joggiescottages.com/">JOGGIES RECREATIONAL CENTER</a></p>
<p class="footer_lorem_text"><a class="my_links" target="_blank" href="https://rotaractd9213.org/">ROTARACT
DISTRICT_9213</a></p>
<p class="footer_lorem_text"><a class="my_links" target="_blank" href="https://rotary.org/">ROTARY</a></p>
</div>
<div class="col-lg-4 col-sm-6">
<h1 class="customer_text">Address</h1>
<p class="footer_lorem_text">
<strong>Address: </strong> <br>
Bbira - Bulaga, Mityana Rd, Bulenga
</p>
<p class="footer_lorem_text">
<strong>Tel: </strong> <br>
+256 703 747771
</p>
<p class="footer_lorem_text">
<strong>Email: </strong> <br>
rotaract9211buloba@gmail.com
</p>
<div class="social_icon">
<ul>
<li>
<a href="https://www.instagram.com/rotaractbuloba/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 16 16">
<path fill="white"
d="M8 0C5.829 0 5.556.01 4.703.048C3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7C.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297c.04.852.174 1.433.372 1.942c.205.526.478.972.923 1.417c.444.445.89.719 1.416.923c.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417c.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046c.78.035 1.204.166 1.486.275c.373.145.64.319.92.599c.28.28.453.546.598.92c.11.281.24.705.275 1.485c.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598c-.28.11-.704.24-1.485.276c-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598a2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485c-.038-.843-.046-1.096-.046-3.233c0-2.136.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486c.145-.373.319-.64.599-.92c.28-.28.546-.453.92-.598c.282-.11.705-.24 1.485-.276c.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92a.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217a4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334a2.667 2.667 0 0 1 0-5.334" />
</svg>
</a>
</li>
<li>
<a href="https://twitter.com/RctBuloba" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 16 16">
<path fill="white"
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334c0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518a3.301 3.301 0 0 0 1.447-1.817a6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429a3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218a3.203 3.203 0 0 1-.865.115a3.23 3.23 0 0 1-.614-.057a3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15" />
</svg>
</a>
</li>
<li>
<a href="https://www.facebook.com/rotaract.buloba?mibextid=ZbWKwL" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 24 24">
<path fill="white"
d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" />
</svg>
</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<h1 class="customer_text">Our Fellowship Schedule</h1>
<div class="time_main">
<div class="footer_lorem_text">Tuesdays <span class="monday_text1">6:00 pm - 7:00 pm</span></div>
</div>
</div>
</div>
</div>
</div>
<!-- footer section end -->
<!-- copyright section start -->
<div class="copyright_section">
<div class="container">
<p class="copyright_text">
<span id="currentYear">
</span>
All Rights Reserved.
</div>
</div>
<!-- copyright section end -->
<!-- Javascript files-->
<script>
const date = new Date();
console.log(date)
document.getElementById("currentYear").innerText = date.getFullYear();
</script>
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery-3.0.0.min.js"></script>
<script src="js/plugin.js"></script>
<!-- sidebar -->
<script src="js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/custom.js"></script>
<script src="js/send_mail.js"></script>
<!-- javascript -->
<script src="js/owl.carousel.js"></script>
<script src="https:cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.js"></script>
</body>
</html>