-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1291 lines (1135 loc) · 56.5 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>Home | School of Architecture and Planning</title>
<meta content="" name="description">
<meta content="" name="keywords">
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<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/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<div>
<div id="header-content"></div>
<header class="w-100 p-2" style="background-color: rgb(137, 136, 136);">
<div class="container d-flex align-items-center justify-content-center">
<nav id="navbar" class="navbar order-last order-lg-0 justify-content-center">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#dept_desc">About us</a></li>
<li class="dropdown"><a href="#"><span>Academics</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li class="dropdown"><a href="academics.html"><span>Programmes Offered</span> <i
class="bi bi-chevron-right"></i></a>
<ul>
<li class="dropdown"><a href="academics.html"><span>Under Graduation</span> <i
class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="academics.html">B.Arch</a></li>
<li><a href="academics.html">B.Plan</a></li>
</ul>
</li>
<li><a href="academics.html">Post Graduation</a></li>
<li><a href="academics.html">PHD</a></li>
</ul>
</li>
<li class="dropdown"><a href="#"><span>Academic Calender</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li class="dropdown"><a href="#"><span>UG</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Lower Semester</a></li>
<li><a href="#">Higher Semester</a></li>
</ul>
</li>
<li><a href="#">PG</a></li>
<li><a href="#">PHD</a></li>
</ul>
</li>
<li><a href="resource.html">Resources</a></li>
<li><a href="#">Learning Management System</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Research <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="supervisors.html">List of Supervisors</a></li>
<li><a href="#">Theses</a></li>
<li class="dropdown"><a href="projects.html">Projects <i class="bi bi-chevron-right"></i></a>
<ul>
<li class="dropdown"><a href="projects.html">Research <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="projects.html">Ongoing</a></li>
<li><a href="projects.html">Completed</a></li>
</ul>
</li>
<li class="dropdown"><a href="projects.html">Consultancy <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="projects.html">Ongoing</a></li>
<li><a href="projects.html">Completed</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="publications.html">Publications</a></li>
<li><a href="#">Patents</a></li>
<li class="dropdown"><a href="#">Centres <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Ramanujan Computing Center</a></li>
<li><a href="#">Centre for Cyber Security</a></li>
</ul>
</li>
<li><a href="#">Groups</a></li>
<li><a href="#">Thrust Areas</a></li>
<li class="dropdown"><a href="#">Colloborations<i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Industry</a></li>
<li><a href="#">National</a></li>
<li><a href="#">International</a></li>
</ul>
</li>
</ul>
</li>
<li class="dropdown"><a href="#">People <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="teaching-staff.html">Teaching Staff</a></li>
<li><a href="non-teaching-staff.html">Non-Teaching Staff</a></li>
<li><a href="research-scholars.html">Research Scholars</a></li>
<li><a href="#">Adjunct Professors</a></li>
<li><a href="#">Visiting Professors</a></li>
<li><a href="overseas-professors.html">Overseas Professors</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Student Opportunities <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="awards.html">Awards</a></li>
<li><a href="placements.html">Placements</a></li>
<li><a href="#">Student Exchange</a></li>
<li><a href="higher-studies.html">Semester Abroad</a></li>
<li><a href="internships.html">Internships</a></li>
<li><a href="scholarships.html">Scholarships</a></li>
<li><a href="#">Clubs and Association</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Facilities <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="lab.html">Academic Labs</a></li>
<li><a href="#">Specialized Labs</a></li>
<li><a href="#">Infrastructure</a></li>
</ul>
</li>
<li class="dropdown"><a href="#">Events <i class="bi bi-chevron-down"></i></a>
<ul>
<li class="dropdown"><a href="#">Current <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="FieldsEvents.html">Field Visit</a></li>
<li><a href="workshop.html">Workshop</a></li>
</ul>
</li>
<li><a href="pastevents.html">Past</a></li>
</ul>
</li>
<li class="dropdown"><a href="https://www.sapaa.org.in/">Alumni <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="https://www.sapaa.org.in/">Groups</a></li>
<li><a href="https://www.sapaa.org.in/">Homecoming-2023</a></li>
<li><a href="https://www.sapaa.org.in/">Awards & Achievements</a></li>
<li><a href="https://www.sapaa.org.in/">Notable Alumni</a></li>
</ul>
<li class="dropdown"><a href="#">Logins <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">AUKDC</a></li>
<li><a href="#">ADAMS</a></li>
<li><a href="#">SEMS</a></li>
<li><a href="#">OTHERS</a></li>
</ul>
</ul>
</ul>
<span class="m-toggle">
<i class="bi bi-list mobile-nav-toggle text-dark"></i>
</span>
</nav>
<!-- Getting started <a href="#about" class="get-started-btn scrollto">Get Started</a> -->
</div>
</header>
</div>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<!--
<section id="hero" class="d-flex align-items-center justify-content-center">
<div class="container" data-aos="fade-up">
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="150">
<div class="col-xl-6 col-lg-8">
<h1>School of Architecture and Planning</h1>
<h2>Anna University</h2>
</div>
</div>
<div class="row gy-4 mt-5 justify-content-center" data-aos="zoom-in" data-aos-delay="250">
<div class="col-xl-2 col-md-4">
<div class="icon-box">
<i class="ri-article-line"></i>
<h3><a href="">Events</a></h3>
</div>
</div>
<div class="col-xl-2 col-md-4">
<div class="icon-box">
<i class="ri-calendar-todo-line"></i>
<h3><a href="">Academic Calender</a></h3>
</div>
</div>
<div class="col-xl-2 col-md-4">
<div class="icon-box">
<i class="ri-gallery-line"></i>
<h3><a href="">Gallery</a></h3>
</div>
</div>
</div>
</div>
</section>
-->
<!-- End Hero -->
<div id="carouselExampleCaptions" class="carousel slide">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/img/Index/IMG_6148.JPG" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>AWARDS</h5>
<p>Some representative placeholder content for the first slide.</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/img/Index/IMG_6161.JPG" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>EXTRA CURRICULAR ACTIVITIES</h5>
<p>Some representative placeholder content for the second slide.</p>
</div>
</div>
<div class="carousel-item">
<img src="assets/img/Index/IMG_6206.JPG" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5 class="text-black">AWARDS</h5>
<p>Some representative placeholder content for the third slide.</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<main id="main">
<section id="dept_desc">
<div class="container" data-aos="fade-up" style="text-align: justify;">
<h3 class="about row" style="font-weight: bold;"> Department Description</h3>
<br>
The Department of Architecture was established in 1957 as part of University
of Madras in the AC Tech building to offer B.Arch degree course .Subsequently, in 1968 the Department was
renamed as School of Architecture and Planning moved to an independent campus incorporating also the Department
of Planning. In 1978, SAP became a constituent institution in the newly established Anna University. Further,
master degree courses in Architecture also began to offer and intake also increased in order to serve the
society at large. From the year 2005, the Department of Architecture started functioning again as an independent
university department with self-directed purpose to achieve its goals and aspirations.
</div>
</section>
<!-- ======= About Section ======= -->
<!-- <section id="vision_mission" class="about">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-6 pt-4 pt-lg-0 order-2 order-lg-1 content" data-aos="fade-right" data-aos-delay="100">
<h3>Vision</h3>
<p>
The Department of Architecture is committed to excellence in the field of architectural education and the
discipline of architecture through its pedagogical, research, extension and outreach activities, directed
towards the betterment of the world that we inhabit, in all realms shaped by architecture. It shall uphold
universal moral and ethical values in all endeavours that it undertakes and be exemplary in creating
positive transformations.
</p>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 order-2 order-lg-1 content" data-aos="fade-right" data-aos-delay="100">
<h3>Mission</h3>
<ul>
<li><i class="ri-check-double-line"></i> To tap and strengthen the innate potential of each student and
deepen their knowledge/skills in order to enable them to self-actualise as well as become catalysts for
positive change.</li>
<li><i class="ri-check-double-line"></i> To contribute to immediate context, larger society and the world
through knowledge creation and dissemination.</li>
<li><i class="ri-check-double-line"></i> To engage and extend the expertise of the department in
addressing and solving of issues/problems related to the built environment. </li>
<li><i class="ri-check-double-line"></i> To actively interact and collaborate with professionals,
educational institutions and other related organisations at all scales in order to collectively further
the cause of appropriate architecture.</li>
</ul>
</div>
</div>
</div>
</section> -->
<!-- Vision and Mission -->
<!-- ======= Vision Section ======= -->
<section id="vision" class="about">
<div class="container" data-aos="fade-up">
<br>
<div class="row">
<div class="col-lg-6 order-1 order-lg-2" data-aos="fade-left" data-aos-delay="100">
<img src="assets/img/mission.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-2 order-2 order-lg-1 content" data-aos="fade-right" data-aos-delay="100">
<h3>Vision</h3>
<br>
<p style="text-align: justify;">
The Department of Architecture is committed to excellence in the field of architectural education and the
discipline of architecture through its pedagogical, research, extension and outreach activities, directed
towards the betterment of the world that we inhabit, in all realms shaped by architecture. It shall uphold
universal moral and ethical values in all endeavours that it undertakes and be exemplary in creating
positive transformations.
</p>
</div>
</div>
</div>
</section><!-- End Vision Section -->
<!-- ======= Mission Section ======= -->
<section id="vision" class="about">
<div class="container" data-aos="fade-up">
<br>
<div class="row">
<div class="col-lg-6 order-1 order-lg-1" data-aos="fade-left" data-aos-delay="100">
<img src="assets/img/hod-bg.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-2 order-2 order-lg-2 content" data-aos="fade-right" data-aos-delay="100">
<h3>Mission</h3>
<br>
<ul>
<li style="text-align: justify;"><i class="ri-check-double-line"></i> To tap and strengthen the innate
potential of each student and
deepen their knowledge/skills in order to enable them to self-actualise as well as become catalysts for
positive change.</li>
<li style="text-align: justify;"><i class="ri-check-double-line"></i> To contribute to immediate context,
larger society and the world
through knowledge creation and dissemination.</li>
<li style="text-align: justify;"><i class="ri-check-double-line"></i> To engage and extend the expertise
of the department in
addressing and solving of issues/problems related to the built environment. </li>
<li style="text-align: justify;"><i class="ri-check-double-line"></i> To actively interact and collaborate
with professionals,
educational institutions and other related organisations at all scales in order to collectively further
the cause of appropriate architecture.</li>
</ul>
</div>
</div>
</div>
</section><!-- End Mission Section -->
<!-- ======= Features Section ======= -->
<!--
<section id="features" class="features">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="image col-lg-6" style='background-image: url("assets/img/features.jpg");' data-aos="fade-right">
</div>
<div class="col-lg-6" data-aos="fade-left" data-aos-delay="100">
<div class="icon-box mt-5 mt-lg-0" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-receipt"></i>
<h4>Est labore ad</h4>
<p>Consequuntur sunt aut quasi enim aliquam quae harum pariatur laboris nisi ut aliquip</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-cube-alt"></i>
<h4>Harum esse qui</h4>
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-images"></i>
<h4>Aut occaecati</h4>
<p>Aut suscipit aut cum nemo deleniti aut omnis. Doloribus ut maiores omnis facere</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-shield"></i>
<h4>Beatae veritatis</h4>
<p>Expedita veritatis consequuntur nihil tempore laudantium vitae denat pacta</p>
</div>
</div>
</div>
</div>
</section>
-->
<!-- End Features Section -->
<!-- ======= HOD Section part 1 ======= -->
<!--
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2></h2>
<p>MESSAGE FROM OUR HOD</p>
</div>
<div class="row">
<div class="text-center">
<img src="assets/img/about.jpg" class="img-fluid" alt="" style="height:50vh;width: auto;padding:1rem;">
<br><br>
<h3>HOD NAME</h3>
<p style="text-align: justify;"> At the department of Architecture our endeavour is to hone the creativity
as well as the technical knowledge of the students. Here, the focus is on practical learning, with
emphasis on doing and learning. In addition to class room learning, the students engage in varied
activities such as interactive workshops, participating in NASA (National Association of Students of
Architecture), national and international design competitions and organizing technical symposiums. In
addition, expert lectures from the leaders in the field from India and abroad enrich the learning
experience of the students. The Department is strengthened by contributions from a large number of
visiting faculty from the field, thus ensuring that the learning is up to date and industry appropriate.
Collaborations with Institutions of calibre from India and abroad in the form of joint studios and
exchange programmes encourage peer learning and exposure to other cultures of learning.
The teaching and non teaching staff of the department interact comprehensively with the students thus
ensuring mentoring and guidance is always available for the students. Our campus is very well designed
which spaces that enable formal and informal discussions on the subject of Architecture, design, society,
art and other topics, creating an fertile environment that fosters creativity and innovation.
</p>
<a class="cta-btn" href="#">Call To Action</a>
</div>
</div>
</div>
</section>
-->
<!-- End HOD Section part 1 -->
<!-- ======= Services Section ======= -->
<!--
<section id="hod" class="services">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>Check our Services</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="">Lorem Ipsum</a></h4>
<p>Voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in"
data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4><a href="">Sed ut perspiciatis</a></h4>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in"
data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4><a href="">Magni Dolores</a></h4>
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="bx bx-world"></i></div>
<h4><a href="">Nemo Enim</a></h4>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="bx bx-slideshow"></i></div>
<h4><a href="">Dele cardo</a></h4>
<p>Quis consequatur saepe eligendi voluptatem consequatur dolor consequuntur</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-arch"></i></div>
<h4><a href="">Divera don</a></h4>
<p>Modi nostrum vel laborum. Porro fugit error sit minus sapiente sit aspernatur</p>
</div>
</div>
</div>
</div>
</section>
-->
<!-- End Services Section -->
<!-- ======= Cta Section ======= -->
<section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="section-title">
<h2></h2>
<p>MESSAGE FROM OUR HOD</p>
</div>
<div class="text-center">
<img src="assets/img/hod.jpg" class="img-fluid" alt="" style="height:50vh;width: auto;">
<br><br>
<h3>Dr. R. H. Rukkumany</h3>
<p style="text-align: justify;"> At the department of Architecture our endeavour is to hone the creativity as
well as the technical knowledge of the students. Here, the focus is on practical learning, with emphasis on
doing and learning. In addition to class room learning, the students engage in varied activities such as
interactive workshops, participating in NASA (National Association of Students of Architecture), national
and international design competitions and organizing technical symposiums. In addition, expert lectures from
the leaders in the field from India and abroad enrich the learning experience of the students. The
Department is strengthened by contributions from a large number of visiting faculty from the field, thus
ensuring that the learning is up to date and industry appropriate. Collaborations with Institutions of
calibre from India and abroad in the form of joint studios and exchange programmes encourage peer learning
and exposure to other cultures of learning.
The teaching and non teaching staff of the department interact comprehensively with the students thus
ensuring mentoring and guidance is always available for the students. Our campus is very well designed which
spaces that enable formal and informal discussions on the subject of Architecture, design, society, art and
other topics, creating an fertile environment that fosters creativity and innovation.
</p>
<!-- <a class="cta-btn" href="#">Call To Action</a> -->
</div>
</div>
</section><!-- End Cta Section -->
<!-- ======= Counts - 1 Section ======= -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-people"></i>
<span data-purecounter-start="0" data-purecounter-end="362" data-purecounter-duration="1"
class="purecounter"></span>
<p>No of UG Students</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-person-up"></i>
<span data-purecounter-start="0" data-purecounter-end="68" data-purecounter-duration="1"
class="purecounter"></span>
<p>No of PG Students</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-book"></i>
<span data-purecounter-start="0" data-purecounter-end="1" data-purecounter-duration="1"
class="purecounter"></span>
<p>Number of UG programmes </p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-journals"></i>
<span data-purecounter-start="0" data-purecounter-end="2" data-purecounter-duration="1"
class="purecounter"></span>
<p>Number of PG programmes </p>
</div>
</div>
</div>
</div>
</section><!-- End Counts - 1 Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="bi bi-person-workspace"></i>
<span data-purecounter-start="0" data-purecounter-end="23" data-purecounter-duration="1"
class="purecounter"></span>
<p>No of Faculty Members</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-person-plus-fill"></i>
<span data-purecounter-start="0" data-purecounter-end="5" data-purecounter-duration="1"
class="purecounter"></span>
<p>No of Research Scholars</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-journal"></i>
<span data-purecounter-start="0" data-purecounter-end="27" data-purecounter-duration="1"
class="purecounter"></span>
<p>Number of Publications </p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-file-text-fill"></i>
<span data-purecounter-start="0" data-purecounter-end="12" data-purecounter-duration="1"
class="purecounter"></span>
<p>H-index </p>
</div>
</div>
</div>
</div>
</section><!-- End Counts Section -->
<!---------- Notice Board, Recent Event HTML Starts --------->
<!---------- News, Event, Notice Board HTML Starts --------->
<section id="events" class="events">
<div class="container">
<div class="main-section">
<div class="event">
<h2 class="heading">Notice Board</h2>
<div>
<marquee direction="up" scrollamount="5" style="height:400px;">
<ul>
<li><img src="assets/img/new4.gif" width="24" height="24"><a
href="https://www.annauniv.edu/pdf/sip%20brochure.pdf"> Call for Student Innovative Projects 2023
- CSRC</a></li>
<li><img src="assets/img/new4.gif" width="24" height="24"><a
href="https://www.annauniv.edu/pdf/fyp23.pdf"> Final Semester Project for Engineering Students -
CIR</a></li>
<li><img src="assets/img/new4.gif" width="24" height="24"><a
href="https://www.annauniv.edu/pdf/deakin.pdf"> Deakin University, Australia - On-Campus PhD
Research Opportunity - CIR</a></li>
<li><img src="assets/img/new4.gif" width="24" height="24"><a
href="https://www.annauniv.edu/pdf/su23.pdf"> Student Exchange Programme - Universty of Skovde,
Sweden - CIR</a></li>
<li><img src="assets/img/new4.gif" width="24" height="24"><a
href="https://www.annauniv.edu/pdf/nthu23.pdf"> Student Exchange Programme - Tsing Hua Universty,
Taiwan - CIR</a></li>
</ul>
</marquee>
</div>
</div>
<div class="note-event">
<h2 class="heading">Events</h2>
<marquee direction="up" behavior="scroll" scrollamount="5" style="height:425px;">
<div class="event-list">
<div class="event-date">
<p>July</p>
<h4>10</h4>
</div>
<div class="event-content">
<p>Workshop</p>
<h3><a href="#" text-align="left">Design Process and Practices</a></h3>
</div>
</div>
<div class="event-list">
<div class="event-date">
<p>July</p>
<h4>07</h4>
</div>
<div class="event-content">
<p>Workshop</p>
<h3><a href="#" text-align="left">Contemporary Mural paintings </a></h3>
</div>
</div>
<div class="event-list">
<div class="event-date">
<p>July</p>
<h4>07</h4>
</div>
<div class="event-content">
<p>Workshop</p>
<h3><a href="#" text-align="left">Neuroactive Design thinking</a></h3>
</div>
</div>
<div class="event-list">
<div class="event-date">
<p>July</p>
<h4>03</h4>
</div>
<div class="event-content">
<p>International Conference by MIT</p>
<h3><a href="#" text-align="left">Innovation in Building Construction Using Traditional Knowledge</a>
</h3>
</div>
</div>
</marquee>
</div>
</div>
</section>
<!---------- Notice Board, Recent Event HTML Ends --------->
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients">
<div class="container" data-aos="zoom-in">
<div class="section-title">
<h2>PLACEMENTS</h2>
<p>COMPANIES</p>
</div>
<div class="clients-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><img src="assets/img/Placements/innate.png" class="img-fluid" alt="Innate_Studio">
</div>
<div class="swiper-slide"><img src="assets/img/Placements/mind_studio.jpg" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/Placements/SKA.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/Placements/ATMOF.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/Placements/studio_parametric.png" class="img-fluid" alt="">
</div>
<div class="swiper-slide"><img src="assets/img/Placements/upasarg.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/Placements/Girish.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/Placements/sculpt_architects.jpg" class="img-fluid" alt="">
</div>
<div class="swiper-slide"><img src="assets/img/Placements/sponge_collabratives.png" class="img-fluid"
alt=""></div>
<div class="swiper-slide"><img src="assets/img/Placements/studio_1509.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/Placements/ssjay.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/Placements/TheBetter_India.png" class="img-fluid" alt="">
</div>
<div class="swiper-slide"><img src="assets/img/Placements/DBI.png" class="img-fluid" alt=""></div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Clients Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<p>GALLERY</p>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-award">Awards</li>
<li data-filter=".filter-workshop">Workshop</li>
<li data-filter=".filter-social">Social And Extracurricular Activities</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-award">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/Awards1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Award 1</h4>
<p>Awards</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/Awards1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Award 1"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-social">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/extracurricular1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Music</h4>
<p>Extracurricular Activity</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/extracurricular1.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Music"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-award">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/Awards2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Awards 2</h4>
<p>Award</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/Awards2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Awards 2"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-workshop">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/workshop2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Mural Workshop</h4>
<p>Workshop</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/workshop2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Mural Workshop"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-social">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/extracurricular2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Dancing</h4>
<p>Extracurricular Activity</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/extracurricular2.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox" title="Dancing"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-award">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/Awards3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Award 3</h4>
<p>Awards</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/Awards3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Award 3"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-social">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/social1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Painting</h4>
<p>Social Activity</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/social1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Painting"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-workshop">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/workshop1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Skeching Workshop</h4>
<p>Workshop</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/workshop1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Skeching Workshop"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-workshop">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/workshop3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Light Workshop</h4>
<p>Workshop</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/workshop3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Light Workshop"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-workshop">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/workshop4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Brick Workshop</h4>
<p>Workshop</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/workshop4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Brick Workshop"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-workshop">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/workshop5.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Model Making Workshop</h4>
<p>Workshop</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/workshop5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Model Making Workshop"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-social">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/social2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Helping Carpenters</h4>
<p>Social Activity</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/social2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Helping Carpenters"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-social">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/social3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Social 3</h4>
<p>Social Activity</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/social3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Social 3"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-social">
<div class="portfolio-wrap">
<img src="assets/img/Gallery/social4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Social 4</h4>
<p>Social Activity</p>
<div class="portfolio-links">
<a href="assets/img/Gallery/social4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox"
title="Social 4"><i class="bx bx-plus"></i></a>
</div>
</div>
</div>
</div>
</div>