forked from mahesh-2905/acces_2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1940 lines (1835 loc) · 84.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
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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>ACCES 2024</title>
<link rel="icon" type="image/x-icon" href="/assets/img/favicon.ico" />
<meta content="" name="description" />
<meta content="" name="keywords" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<!-- Favicons
<link href="assets/img/LVlogo.PNG" rel="apple-touch-icon" /> -->
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- =======================================================
* Template Name: TheEvent - v4.6.0
* Template URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container-fluid container-xxl d-flex align-items-center">
<div id="logo" class="me-auto d-flex align-items-center">
<!-- Uncomment below if you prefer to use a text logo -->
<!-- <h1><a href="index.html">The<span>Event</span></a></h1>-->
<a href="index.html" class="scrollto"
><img id="acces" src="assets/img/logo.png" alt="" title=""
/></a>
<!-- <a href="http://www.griet.ac.in/" class="scrollto" target="_blank"><img id="griet" src="assets/img/aietta.png" alt="" title=""></a> -->
<a
href="livededutechservices.in"
class="scrollto ml-3"
target="_blank"
style="
background-color: white;
border-radius: 50%;
padding: 10px 5px;
"
><img
id="cityuniversity"
src="assets/img/LV.png"
height="50px"
alt=""
title=""
/></a>
<a href="http://mlewguntur.com/" class="scrollto ml-3" target="_blank"
><img id="aip" src="assets/img/college_logo.png" alt="" title=""
/></a>
</div>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#speakers">Speakers</a></li>
<li><a class="nav-link scrollto" href="#schedule">Schedule</a></li>
<li>
<a class="nav-link scrollto" href="#faq">Call for Papers</a>
</li>
<li>
<a class="nav-link scrollto" href="#publications">Publications</a>
</li>
<li>
<a class="nav-link scrollto" href="#committee">Committee</a>
</li>
<li>
<a class="nav-link scrollto" href="#shipping"
>Shipping Services</a
>
</li>
<li>
<a class="nav-link scrollto" href="#registration">Registration</a>
</li>
<!-- <li><a class="nav-link scrollto" href="#about">About</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#venue">Venue</a></li>
<li><a class="nav-link scrollto" href="#hotels">Hotels</a></li>
<li><a class="nav-link scrollto" href="#gallery">Gallery</a></li>
<li><a class="nav-link scrollto" href="#supporters">Sponsors</a></li> -->
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container" data-aos="zoom-in" data-aos-delay="100">
<marquee
width="100%"
style="color: rgb(255, 196, 0) !important"
direction="left"
height="100px"
>
All accepted and presented papers will be published in scopus indexed
conference proceedings/book proceedings. Few selected papers published
in Scopus indexed journals
</marquee>
<h1 class="mb-4 pb-0">
2nd International Conference on <br />
<span
>Advances in Communications, Computing and Electronic Systems
(Online)</span
>
</h1>
<h2 class="text-center hero_descp">6th April, 2024</h2>
<h2 class="text-center hero_descp">
Malineni Lakshmaiah Women's Engineering College (Autonomous)
</h2>
<p>
Technical Partner :
<a href="https://livededutechservices.in/" target="_blank">
LIVED EDUTECH SERVICES, INDIA
</a>
</p>
<!-- <p class="mb-4 pb-0">6-7 May 2022, Gokaraju Rangaraju Institute of Engineering and Technology, Hyderabad</p>
<a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="glightbox play-btn mb-4"></a>
<a href="http://www.acces2020.griet.ac.in/" target="blank" class="about-btn scrollto">Previous Conference</a>
<a href="./assets/broucher/Broucher.pdf" target="_blank" class="about-btn scrollto">Download Brochure</a> -->
</div>
</section>
<!-- End Hero Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-7 pr-5">
<h1 class="highlight"><b>About The Event</b></h1>
<p class="about_descp" style="text-align: justify">
The emergent Technologies globally provide platforms for
industrial experts and research scholars to bring innovations to
meet the rapid growth of the Information and society needs. The
purpose of ACCES 2024 is to promote discussions and interaction
among academics, researchers and professionals on various
aspects of ubiquitous technology in the field of Communication,
Signal and Image processing, VLSI, Soft Computing and Embedded
Systems. In this conference, the specific themes for intensive
panel discussions are also planned according to the areas of
interest. Outstanding keynote speakers and well known leading
scientists and experts from across the globe will be expected to
share their knowledge.
</p>
</div>
<div class="col-lg-3 d-flex flex-column align-items-center">
<h2 class="highlight">Where</h2>
<p class="about_descp text-center">
Malineni Lakshmaiah Women's Engineering College (Autonomous)
</p>
</div>
<div class="col-lg-2 d-flex flex-column align-items-center">
<h2 class="highlight">When</h2>
<p class="about_descp text-center">
Saturday<br />6th April 2024
</p>
</div>
<!-- <div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="./assets/img/event slider/1.jpeg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./assets/img/event slider/2.jpeg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./assets/img/event slider/3.jpeg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" 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="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div> -->
</div>
<div class="row mt-4">
<div class="col-lg-12 col-md-6">
<h2 class="highlight">About The Institute</h2>
<p class="about_descp text-justify">
MalineniLakshmaiah Women’s Engineering College, (MLEW) has been
established in 2008 to leverage ‘education’ as a means of
‘empowerment’ of women. The aim is to promote Technical
Education among women to enhance and build-up a new generation
of thinkers, innovators and planners in the realms of Science
and Technology. It is approved by All India Council for
Technical Education (AICTE), New Delhi and ISO 9001:2015
Certified Institutionand with the recognition of Govt. of A.P,
MLEW is affiliated to Jawaharlal Nehru Technological University
(JNTU-K), Kakinada. Since the inception of the college, the
college has been taking in students and growing in facilities
year after year. Aesthetically landscaped, the sprawling campus
of the college is home to the finest facilities and contemporary
instructional infrastructure. Every student of MALINENI can be
assured that this institution will provide them a very congenial
academic ambience and the right type of inputs in order to mould
them with the right technical competence as required by the
industry. The teaching-learning process is carried out through
the use of overhead and LCD projectors. The college boosts
facilities such as an extensive computer center, library,
advanced lab for communication skills, internet center, spacious
seminar halls and Digital Classrooms.
</p>
<h3 class="highlight">Vision</h3>
<p class="about_descp text-justify">
To be a pioneer institute in engineering education, fostering
academic excellence, and producing empowered women engineers,
blended with ethics and values, to serve the society.
</p>
<h3 class="highlight">Mission</h3>
<p class="about_descp">
1. To achieve academic excellence through innovative
teaching-learning practices.<br />
2. To inculcate self-discipline, ethics, and values amongst the
learners .<br />
3. To bridge the gap between industry and academia through the
industry-institute interface<br />
4. To promote higher education, research and inculcate
entrepreneurial attitude amongst the learners<br />
</p>
<!-- <h3 class="highlight">Quality Policy</h3>
<p class="about_descp">
To provide an integrated learning environment to enable students to grow towards their full potential and meet the high expectations of the Industry and the Society.
</p> -->
</div>
</div>
<!-- <div class="row">
<div class="col-lg-12 col-md-6">
<h2 class="highlight">About The Department</h2>
<p class="about_descp">The department of ECE started in the year 1997. The department is accredited by NBA and NAAC. The department offers UG and PG courses, VLSI and Embedded Systems as specialization. The department has expertise adequate teaching faculty with industrial experience.</p>
</div>
</div> -->
</div>
</section>
<!-- End About Section -->
<!-- ======= Speakers Section ======= -->
<section id="speakers" class="mt-5">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Speakers</h2>
<p>Here are some of our speakers</p>
</div>
<div class="row">
<!-- <div class="col-lg-6 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img
src="assets/img/speakers/person1.jpg"
style="width: 640px; height: 480px"
alt="Speaker 1"
class="img-fluid"
/>
<div class="details">
<h3>PROF. LI XINGWANG</h3>
<p>Henan Polytechnic University, China</p>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img
src="assets/img/speakers/person3.jpg"
style="width: 640px; height: 480px"
alt="Speaker 3"
class="img-fluid"
/>
<div class="details">
<h3>PROF. S.B.GOYAL</h3>
<p>Director, City University, Malaysia</p>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div> -->
<div class="col-lg-6 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img
src="assets/img/speakers/person2.jpg"
style="width: 640px; height: 480px"
alt="Speaker 1"
class="img-fluid"
/>
<div class="details">
<h3>Dr. PRASENJIT CHATTERJEE</h3>
<p>
Professor and Dean (Research & Consultancy),MCKVIE, India
</p>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img
src="assets/img/speakers/person4.jpg"
style="width: 640px; height: 480px"
alt="Speaker 1"
class="img-fluid"
/>
<div class="details">
<h3>Dr. MOHAMMAD KAMRUL HASAN</h3>
<p>
Associate Professor (Head of Network and Communication
Technology Research Lab), Center for Cyber Security, FTSM,
Universiti Kebangsaan Malaysia (UKM).
</p>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" data-aos="fade-up">
<div class="section-header">
<p>
All speakers are World’s Top 2% Most-Cited Scientists 2023 by
US-based Stanford University using the Scopus author profiles as
of Oct 1, 2023, from various scientific fields.
</p>
</div>
</div>
</section>
<!-- End Speakers Section -->
<!-- ======= Schedule Section ======= -->
<section id="schedule" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Here is our event schedule</p>
</div>
<!-- <ul class="nav nav-tabs" role="tablist" data-aos="fade-up" data-aos-delay="100">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-bs-toggle="tab">6th May</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-bs-toggle="tab">7th May</a>
</li>
</ul> -->
<div
class="tab-content row justify-content-center"
data-aos="fade-up"
data-aos-delay="200"
>
<p>Update soon</p>
<!-- Schdule Day 1 -->
<!-- <div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 - 10:00 AM</time></div>
<div class="col-md-10">
<h4>Conference Inauguration</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 - 11:00 AM</time></div>
<div class="col-md-10">
<h4>Keynote Talk-1</h4>
<p>By Prof. George Ghinea, Brunel University London, UK</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:00 - 12:30 PM</time></div>
<div class="col-md-10">
<h4>Papers Presentation</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:30 - 1:30 PM</time></div>
<div class="col-md-10">
<h4>Keynote Talk</h4>
<p>By Dr. S.B. Goyal, City University, Malaysia</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:00 - 4:00 PM</time></div>
<div class="col-md-10">
<h4>Qui Paper Presentation</h4>
</div>
</div>
</div> -->
<!-- End Schdule Day 1 -->
<!-- Schdule Day 2 -->
<!-- End Schdule Day 2 -->
<!-- Schdule Day 3 -->
<!-- <div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-3">
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/2.jpg" alt="Hubert Hirthe">
</div>
<h4>Et voluptatem iusto dicta nobis. <span>Hubert Hirthe</span></h4>
<p>Maiores dignissimos neque qui cum accusantium ut sit sint inventore.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/3.jpg" alt="Cole Emmerich">
</div>
<h4>Explicabo et rerum quis et ut ea. <span>Cole Emmerich</span></h4>
<p>Veniam accusantium laborum nihil eos eaque accusantium aspernatur.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/1.jpg" alt="Brenden Legros">
</div>
<h4>Libero corrupti explicabo itaque. <span>Brenden Legros</span></h4>
<p>Facere provident incidunt quos voluptas.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/4.jpg" alt="Jack Christiansen">
</div>
<h4>Qui non qui vel amet culpa sequi. <span>Jack Christiansen</span></h4>
<p>Nam ex distinctio voluptatem doloremque suscipit iusto.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>03:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/5.jpg" alt="Alejandrin Littel">
</div>
<h4>Quos ratione neque expedita asperiores. <span>Alejandrin Littel</span></h4>
<p>Eligendi quo eveniet est nobis et ad temporibus odio quo.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>04:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/6.jpg" alt="Willow Trantow">
</div>
<h4>Quo qui praesentium nesciunt <span>Willow Trantow</span></h4>
<p>Voluptatem et alias dolorum est aut sit enim neque veritatis.</p>
</div>
</div>
</div> -->
<!-- End Schdule Day 2 -->
</div>
</div>
</section>
<!-- End Schedule Section -->
<!-- ======= Venue Section ======= -->
<section id="venue">
<div class="container-fluid" data-aos="fade-up">
<div class="section-header">
<h2>Event Venue</h2>
<p>Event venue location info and gallery</p>
</div>
<div class="row g-0">
<div class="col-lg-4 venue-map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d983073.1616430186!2d79.5360080381116!3d15.744285126988116!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a4a745fe0946805%3A0x90b4aba3c9c7c0ef!2sMalineni%20Lakshmaiah%20Womens%20Engineering%20College!5e0!3m2!1sen!2sin!4v1699076848461!5m2!1sen!2sin"
width="600"
height="450"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
<div class="col-lg-8 venue-info">
<div class="row justify-content-center">
<div class="col-11 col-lg-10 position-relative">
<h3>
Malineni Lakshmaiah Women's Engineering College (Autonomous)
</h3>
<p
class="text-justify"
style="font-size: 15px; line-height: 25px"
>
MalineniLakshmaiah Women’s Engineering College, (MLEW) has
been established in 2008 to leverage ‘education’ as a means
of ‘empowerment’ of women. The aim is to promote Technical
Education among women to enhance and build-up a new
generation of thinkers, innovators and planners in the
realms of Science and Technology. It is approved by All
India Council for Technical Education (AICTE), New Delhi and
ISO 9001:2015 Certified Institutionand with the recognition
of Govt. of A.P, MLEW is affiliated to Jawaharlal Nehru
Technological University (JNTU-K), Kakinada. Since the
inception of the college, the college has been taking in
students and growing in facilities year after year.
Aesthetically landscaped, the sprawling campus of the
college is home to the finest facilities and contemporary
instructional infrastructure. Every student of MALINENI can
be assured that this institution will provide them a very
congenial academic ambience and the right type of inputs in
order to mould them with the right technical competence as
required by the industry. The teaching-learning process is
carried out through the use of overhead and LCD projectors.
The college boosts facilities such as an extensive computer
center, library, advanced lab for communication skills,
internet center, spacious seminar halls and Digital
Classrooms.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="container-fluid venue-gallery-container" data-aos="fade-up" data-aos-delay="100">
<div class="row g-0">
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/1.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/1.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/2.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/3.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/3.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/4.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/4.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/5.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/5.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/6.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/6.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/7.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/7.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/8.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/8.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div> -->
</section>
<!-- End Venue Section -->
<!-- ======= Hotels Section ======= -->
<!-- <section id="hotels" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Places to visit in Hyderabad</h2>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-4 col-md-6">
<div class="hotel">
<div class="hotel-img">
<img src="assets/img/hotels/1.jpg" alt="Hotel 1" class="img-fluid">
</div>
<h3><a href="#hotels">Charminar</a></h3>
<p>The Charminar (lit. 'four minarets') constructed in 1591, is a monument and mosque located in Hyderabad, Telangana, India</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="hotel">
<div class="hotel-img">
<img src="assets/img/hotels/2.jpg" style="height: 248px;" alt="Hotel 2" class="img-fluid">
</div>
<h3><a href="#hotels">Golconda</a></h3>
<p>Golconda Fort, also known as Golla konda (Telugu: "shepherds' hill"), is a fortified citadel built by the Kakatiyas.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="hotel">
<div class="hotel-img">
<img src="assets/img/hotels/3.jpg" style="height: 248px;" alt="Hotel 3" class="img-fluid">
</div>
<h3><a href="#hotels">Birla Mandir</a></h3>
<p>Birla Mandir is a Hindu temple, built on a 280 feet high hillock called Naubath Pahad on a 13 acres plot in Hyderabad,Telangana,India.</p>
</div>
</div>
</div>
<div class="row hotel" data-aos="fade-up" data-aos-delay="100">
<div class="col-log-12 p-3">
<h3><a href="#hotels">Hyderabad</a></h3>
<p>Hyderabad, the fifth largest metropolis of India, is the state capital of Telangana, known for its rich history and culture with monuments, mosques, temples, a rich and varied heritage in arts, crafts and dance. This site endeavors to present the rich heritage and culture of Hyderabad, along with an insight into Hyderabad today. Hyderabad is located on the banks of the Musi River and on the Deccan Plateau.
Hyderabad and Secunderabad are “twin cities” near Hussain Sagar Lake (also known as Tank Bund in local parlance) but both cities have grown so much that now they have become one big metropolis. The city and district of Hyderabad are coterminous. Hyderabad district is entirely contained within the Ranga Reddy district of Telangana. Many of the suburbs of Hyderabad were recently merged into the city, now called Greater Hyderabad.</p>
</div>
</div>
</div>
</section>End Hotels Section -->
<!-- ======= Gallery Section ======= -->
<!-- <section id="gallery">
<!-- <div class="container-fluid" data-aos="fade-up">
<div class="section-header">
<h2>Gallery</h2>
<p>Check our gallery from the recent events</p>
</div>
</div>
<div class="container-fluid venue-gallery-container" data-aos="fade-up" data-aos-delay="100">
<div class="row g-0">
<div class="col-lg-3 col-md-4 gallery_card">
<div class="venue-gallery">
<a href="assets/img/2.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4 gallery_card">
<div class="venue-gallery">
<a href="assets/img/4.png" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/4.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4 gallery_card">
<div class="venue-gallery">
<a href="assets/img/3.png" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/3.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4 gallery_card">
<div class="venue-gallery">
<a href="assets/img/1.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/1.jpg" alt="" class="img-fluid">
</a>
</div>
</div> -->
<!-- <div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/3.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/3.jpg" alt="" class="img-fluid">
</a>
</div>
</div> -->
<!-- <div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/4.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/4.jpg" alt="" class="img-fluid">
</a>
</div>
</div> -->
<!-- <div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/5.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/5.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/6.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/6.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/7.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/7.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/8.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/8.jpg" alt="" class="img-fluid">
</a>
</div>
</div> -->
<!-- </div>
</div> -->
<!-- <div class="gallery-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><a href="assets/img/gallery/1.jpg" class="gallery-lightbox"><img src="assets/img/gallery/1.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/2.jpg" class="gallery-lightbox"><img src="assets/img/gallery/2.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/3.jpg" class="gallery-lightbox"><img src="assets/img/gallery/3.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/4.jpg" class="gallery-lightbox"><img src="assets/img/gallery/4.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/5.jpg" class="gallery-lightbox"><img src="assets/img/gallery/5.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/6.jpg" class="gallery-lightbox"><img src="assets/img/gallery/6.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/7.jpg" class="gallery-lightbox"><img src="assets/img/gallery/7.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/8.jpg" class="gallery-lightbox"><img src="assets/img/gallery/8.jpg" class="img-fluid" alt=""></a></div>
</div>
<div class="swiper-pagination"></div>
</div>-->
<!-- </section> -->
<!-- End Gallery Section -->
<!-- ======= Supporters Section ======= -->
<section id="supporters" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Sponsors</h2>
</div>
<div
class="row no-gutters supporters-wrap clearfix"
data-aos="zoom-in"
data-aos-delay="100"
>
<p>Content will Update soon</p>
<!-- <div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/1.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/2.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/3.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/4.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/5.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/6.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/7.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/8.png" class="img-fluid" alt="">
</div>
</div> -->
</div>
</div>
</section>
<!-- End Sponsors Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Call for Papers</h2>
</div>
<div class="row">
<div
class="col-lg-6 col-md-6 col-sm-12 d-flex flex-column align-items-center justify-content-center"
>
<h3><b>Paper Template</b></h3>
<ul>
<li>
Mention all authors Affiliations, e-mail address in the paper
</li>
<li>Send paper through easy chair</li>
<!-- <li>
<a href="./assets/AIP Conference Proceedings License Agreement.pdf" target="_blank">Copyright/License Agreement Form</a>
</li>
<li>
<a href="./assets/AIPCP Article Template.docx" target="_blank">AIP Conference proceedings template</a>
</li> -->
</ul>
</div>
<div
class="col-lg-6 col-md-6 col-sm-12 d-flex flex-column align-items-center justify-content-center"
>
<h3><b>Submission</b></h3>
<ul
style="list-style-type: none"
class="d-flex flex-column align-items-center justify-content-center"
>
<li class="submission">
Authors are required to submit their papers via the
<a href="https://easychair.org/cfp/ACCES-2024"
>Easy Chair Link</a
>
</li>
<li>
<b>OR</b>
</li>
<li class="text-center">
Authors can send papers directly to the e-mail id:
<a href="mailto:conveneracces2024@malinenicolleges.ac.in"
>conveneracces2024@malinenicolleges.ac.in</a
>
</li>
</ul>
</div>
</div>
<h5 class="text-center mt-5"><b>Tracks and Topics</b></h5>
<div
class="row justify-content-center"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="col-lg-9">
<ul class="faq-list">
<li>
<div
data-bs-toggle="collapse"
class="collapsed question"
href="#faq1"
>
Communications<i class="bi bi-chevron-down icon-show"></i
><i class="bi bi-chevron-up icon-close"></i>
</div>
<div id="faq1" class="collapse" data-bs-parent=".faq-list">
<p>
Cellular Networks<br />
Sensing and Sensor Networks<br />
Geographic information systems<br />
Cloud Networking<br />
Signal processing<br />
Virtualization<br />
Machine to Machine (M2M)<br />
Cognitive Radio<br />
Body Area Networks<br />
Satellite and Optical Communication<br />
Integrated satellite-to-satellite communications<br />
Monitoring/driving natural calamities<br />
Sea-to-Space communications<br />
Nano antennas<br />
High speed optical broadcasting fibers lines<br />
High data rates<br />
Ultra fast access of Internet<br />
Global energy sources<br />
</p>
</div>
</li>