-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1332 lines (1131 loc) · 62.4 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">
<title>IWA-YWP Technoscape 2020</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./index.css">
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<link rel="icon" href="images/fav.jpeg" type="image/x-icon">
<style>
@media (max-width : 900px){
.space-fix {
margin-top : 100px;
}
.margin-100{
margin-top:100px
}
}
p {
text-align : justify
}
body {
font-family: 'Muli', sans-serif;
font-weight: bold;
}
.sec-one {
background: linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .42)), url("images/tahHd.jpeg") center center no-repeat;
background-size: cover;
}
.sec-one-cont {
height: auto;
color: white;
}
.bg-dark-ov {
background-color: rgb(34, 34, 34);
}
.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link {
color: rgb(64, 157, 224);
}
.navbar-dark .navbar-nav .nav-link {
color: rgb(255, 255, 255);
}
body {
font-size: 0.9rem;
}
.navbar-dark .navbar-nav .nav-link.disabled {
color: rgb(255, 255, 255);
}
.dropdown-menu {
background: rgb(34, 34, 34);
}
.dropdown-item {
color: rgba(255, 255, 255, 0.5);
font-size: 0.8rem;
padding: .6rem 1.5rem;
}
.dropdown-item:hover {
color: white;
background-color: rgb(34, 34, 34);
}
.nav-item:hover {
color: rgb(64, 157, 224);
}
#top-btn:hover {
background-color: grey;
border-color: grey;
}
@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: .7rem;
padding-left: .7rem;
}
.pad4lap {
padding-left: 40px;
}
}
.y {
margin: 0 auto;
text-align: center;
color: white;
background: #222;
font-weight: 100;
}
.x {
display: inline-block;
line-height: 1;
padding: 20px;
font-size: 40px;
}
span {
display: block;
font-size: 20px;
color: white;
}
#days {
font-size: 100px;
color: white;
background-color: black;
margin-bottom: 30px;
margin-top: 30px;
}
#hours {
font-size: 100px;
color: white;
background-color: black;
margin-bottom: 30px;
margin-top: 30px;
}
#minutes {
font-size: 100px;
color: white;
background-color: black;
margin-bottom: 30px;
margin-top: 30px;
}
#seconds {
font-size: 100px;
color: white;
background-color: black;
margin-bottom: 30px;
margin-top: 30px;
}
@media (max-width: 780px) {
.subbut {
padding-left: 15px;
}
.subbut {
width: 100px;
margin-left: -10px;
}
}
@media (min-width: 900px) {
.subbut {
margin-left: -10px;
width: 150px;
}
.lesspad {
padding-left: -22px;
}
}
@media (min-width: 1001px) {
#minWidth1 {
min-width: 290px;
}
#minWidth2 {
min-width: 90px;
}
}
#footer {
background: #222;
color: #fff;
padding: 80px 0 35px 0;
}
.bfricon:before {
content: "\e131";
font-family: 'Glyphicons Halflings';
font-size: 10px;
float: left;
margin-left: -17px;
color: #4a4a4a;
}
.df:before {
content: "\e131";
font-size: 10px;
float: left;
margin-left: -17px;
color: #4a4a4a;
}
li {
font-size: 12px;
}
.bgImages {
background: linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, .92)), url("images/circleBlue.png") no-repeat;
background-repeat: no-repeat;
background-position: center;
}
@media only screen and (min-width: 800px){
#universities{
padding: 0 10vw 5vh 10vw;
}
}
</style>
</head>
<body>
<div class="container-fluid" style="background-color: #00ADEF;height: 23px;">
<div class="row">
<div class="col-lg-7">
<p style="color: white;font-size:14px;">International Water Association</p>
</div>
<div class="col-lg-3">
<div style="color: white;font-size:14px;display: inline-block;margin-right: 15px"><a target="_blank"
href="https://thesourcemagazine.org/"
style="text-decoration: none;color:white;cursor: pointer;">The Source</a></div>
<div style="color: white;font-size:14px;display: inline-block;margin-right: 15px"><a target="_blank"
href="https://iwa-connect.org/" style="text-decoration: none;color:white;cursor: pointer;">IWA
Connect</a></div>
<div style="color: white;font-size:14px;display: inline-block;margin-right: 15px"><a target="_blank"
href="http://www.iwapublishing.com/"
style="text-decoration: none;color:white;cursor: pointer;">IWA Publishing</a></div>
</div>
<div class="col-lg-2">
<a target="_blank" href="https://www.facebook.com/InternationalWaterAssociation"
style="text-decoration: none;color:white;cursor: pointer;margin-right: 10px;margin-left:80px"><i
style="color:white;" class="fa fa-facebook" aria-hidden="true"></i></a>
<a target="_blank" href="https://twitter.com/IWAHQ"
style="text-decoration: none;color:white;cursor: pointer;margin-right: 10px"><i style="color:white"
class="fa fa-twitter" aria-hidden="true"></i></a>
<a target="_blank"
href="https://www.linkedin.com/company/1119749?trk=tyah&trkInfo=tarId%3A1397062280514%2Ctas%3Ainternational%20water%20association%2Cidx%3A2-1-6"
style="text-decoration: none;color:white;cursor: pointer;margin-right: 10px"><i style="color:white;"
class="fa fa-linkedin" aria-hidden="true"></i></a>
<a target="_blank" href="https://vimeo.com/iwahq"
style="text-decoration: none;color:white;cursor: pointer;margin-right: 10px"><i style="color:white;"
class="fa fa-vimeo" aria-hidden="true"></i></a>
</div>
</div>
</div>
<div class="container-fluid" style="background-color: rgb(34,34,34)">
<nav class="navbar-expand-lg navbar navbar-dark bg-dark-ov">
<a class="navbar-brand" href="#">
<img src="images/iwa.png" height="30" alt="IWA logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">HOME <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
ABOUT
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./view/theconference.html">THE CONFERENCE</a>
<a class="dropdown-item" href="./view/themes.html">THEMES</a>
<a class="dropdown-item" href="./view/keyDates.html">KEY DATES</a>
<a class="dropdown-item" href="./view/regDetails.html">REGISTRATION DETAILS</a>
<a class="dropdown-item" href="./view/prevConference.html">PREVIOUS CONFERENCE</a>
</div>
</li>
<!--PROGRAMME TO USED LATER -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
PROGRAMME
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./view/techTour.html">TECHNICAL TOUR</a>
<a class="dropdown-item" href="./view/programScedule.html">PROGRAMME SCHEDULE</a>
<a class="dropdown-item" href="./view/techSessions.html">TECHNICAL SESSIONS</a>
<a class="dropdown-item" href="./view/workShops.html">WORKSHOPS</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
COMMITTEE
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./view/patron.html">PATRONS</a>
<a class="dropdown-item " href="./view/steeringCommitte.html">STEERING COMMITTEE</a>
<a class="dropdown-item" href="./view/advisoryCommittee.html">ADVISORY COMMITTEE</a>
<a class="dropdown-item" href="./view/programmeCommittee.html">PROGRAMME COMMITTEE</a>
<a class="dropdown-item" href="./view/localOrganisingCommittee.html">LOCAL ORGANISING COMMITTEE</a>
<a class="dropdown-item " href="./view/additionalCommittee.html">JOINT ORGANISING COMMITTEE</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
SUBMISSION
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./view/SUBMISSION.html">CALL FOR PAPERS</a>
<a class="dropdown-item" href="./view/abstract.html">SUBMIT ABSTRACT</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
SPONSORS
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./view/becomethesponser.html">BECOME A SPONSOR</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
DESTINATION
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./view/aboutTheDestination.html">ABOUT THE DESTINATION</a>
<a class="dropdown-item" href="./view/visaRequirements.html">VISA REQUIREMENTS</a>
<a class="dropdown-item" href="./view/accommodation.html">ACCOMMODATION</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
DOWNLOADS
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./view/brochure.html">BROCHURE</a>
<!-- <a class="dropdown-item" href="#">MEDIA</a> -->
</div>
</li>
<li class="nav-item dropdown" style="margin-right: 15px;">
<a class="nav-link dropdown-toggle" href="./view/contact.html" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
CONTACT
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./view/faq.html">FAQ</a>
</div>
</li>
<li class="nav-item "
style="border : 1px solid white; text-align: center; padding-left: 7px; padding-right: 7px">
<a class="nav-link active" href="./view/abstract.html">SUBMIT ABSTRACT</a>
</li>
</ul>
</div>
</nav>
</div> <!--Top Division-->
<div class="container-fluid sec-one">
<div class="row sec-one-cont">
<p class="blinking" style="text-align: center; padding: 15px 15px 0 15px; position: relative; font-size: 1.4rem; font-weight: bold; width: 100%;">The last date for submitting the abstract has been extended till 1st of April, 2020!</p>
<div class="col-sm-12 " style="height: auto; padding: 20vh 10vw 20vh 10vw;">
<div style=" margin-bottom: 2vh;">
<p style="font-size: 1.4em; text-align: left">T r a n s c e n d - E v o l v e - S u s t a i n</p>
</div>
<div >
<p style="font-size: 3.6em;font-weight: 1200 !important; text-align: left">Technoscape 2020</p>
</div>
<div >
<p style="font-size: 1.4em;font-weight: normal; text-align: left">First IWA-YWP Trans-Asia Conference on </p>
</div>
<div >
<p style="font-size: 2.2em; text-align: left"><b>Smart Technologies for Water and Wastewater
Treatment</b></p>
</div>
<div >
<p style="font-size: 1.2em;font-weight: normal; text-align: left">16<sup>th</sup> - 19<sup>th</sup> December 2020, VELLORE, INDIA
</p>
</div>
</div>
</div>
</div>
<!--
<div class="container-fluid">
<div class="row" style="height: auto; padding: 8vh 10vw 10vh 10vw; ">
<div class="col-12">
<p style="font-size: 45px; font-weight: 700; word-wrap: break-word">
TECHNOSCAPE 2020
</p>
</div>
<div class="col-12">
<div class="col-12 col-md-6">
<object type="application/x-shockwave-flash" style="width: 100%; height:auto;min-height:320px" data="//www.youtube.com/v/wAD9uO9YAQw?color2=FBE9EC&autoplay=1&version=3">
<param name="movie" value="//www.youtube.com/v/wAD9uO9YAQw?color2=FBE9EC&autoplay=1&version=3" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
</object>
</div>
<div class="col-12 col-md-6">
<p style="font-size: 18px;margin-bottom: 5vh">
Water has made its way into almost every aspect of human life and has become the most
indispensable natural resource. However, various anthropogenic activities are threatening its very
existence. If the judicious utilization of the remaining supplies is to be ensured, it is our responsibility
as human beings to search for viable alternatives. </p>
</div>
</div>
</div>
</div> -->
<div class="container-fluid">
<div class="row bgImages" style="height: auto;padding: 7vh 10vw 8vh 10vw;">
<!-- <div class="col-12 col-md-6">
<iframe width="420" height="345" src="https://www.youtube.com/watch?v=wAD9uO9YAQw" frameborder="0" allowfullscreen></iframe>
<object type="application/x-shockwave-flash" style="min-height: 350px; height: auto;padding: auto 20px auto 30px" data="//www.youtube.com/v/1mFGQ_3W7NU?color2=FBE9EC&version=3">
<param name="movie" value="//www.youtube.com/v/1mFGQ_3W7NU?color2=FBE9EC&version=3" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
</object>
</div> -->
<div class="col-12 col-md-6">
<!-- <iframe width="420" height="345" src="https://www.youtube.com/watch?v=wAD9uO9YAQw" frameborder="0" allowfullscreen></iframe> -->
<!-- <object type="application/x-shockwave-flash" style="width: 100%; height:auto;min-height:320px"
data="//www.youtube.com/v/1mFGQ_3W7NU?color2=FBE9EC&version=3">
<param name="movie" value="//www.youtube.com/v/1mFGQ_3W7NU?color2=FBE9EC&version=3" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
</object> -->
<div style="padding:56.25% 0 0 0;position:relative;">
<iframe src="https://player.vimeo.com/video/389301923?loop=1&byline=0"
style="position:absolute;top:0;left:0;width: 100%;height:auto;min-height:320px" frameborder="0"
allow="autoplay; fullscreen" allowfullscreen></iframe>
</div>
<script src="https://player.vimeo.com/api/player.js">
</script>
</div>
<div class="col-12 col-md-6" style="width: 100%; height:auto;min-height:320px">
<p class="space-fix margin-100" style="font-weight: 700;font-size: 30px;color : rgb(64,157,225);">Technoscape 2020</p>
<p style="font-size: 18px">
Water has made its way into almost every aspect of human life and has become the most
indispensable natural resource. However, various anthropogenic activities are threatening its very
existence. If the judicious utilization of the remaining supplies is to be ensured, it is our
responsibility
as human beings to search for viable alternatives.
</p>
<a href="./view/theconference.html" style="text-decoration: none">
<div
style=" width : 180px; margin-top : 5vh; margin-bottom: 5vh; border: 2px solid rgb(64,157,225); text-align : center; padding: 5px; padding-right: 15px; padding-left: 15px; font-size: 1em; background-color: #00ADEF;; color : white">
Know More About Technoscape
</div>
</a>
</div>
</div>
</div>
<div class="container-fluid" style="background: #00ADEF;color: white">
<div class="row" style="height: auto;padding: 7vh 10vw 8vh 10vw;">
<div class="col-12 col-md-6" style="min-height: 350px; height: auto;">
<p style="font-weight: 700;font-size: 30px;color :white">Destination</p>
<p style="font-size: 18px;color :white">
India is a land of unparalleled beauty ranging from snow-capped mountains to hot deserts. It is
endowed with a diverse variety of landscapes, natural features and weather conditions and moments of
magic await the explorer in every state, in every corner.
</p>
<a href="./view/aboutTheDestination.html" style="text-decoration: none">
<div
style=" width : 180px; margin-top : 5vh; margin-bottom: 5vh; text-align : center; padding: 5px; padding-right: 15px; padding-left: 15px; font-size: 1em; background-color: white; color : #00ADEF">
Know More About Destination
</div>
</a>
</div>
<div class="col-12 col-md-6">
<!-- <iframe width="420" height="345" src="https://www.youtube.com/watch?v=wAD9uO9YAQw" frameborder="0" allowfullscreen></iframe> -->
<object type="application/x-shockwave-flash" style="width: 100%; height:auto;min-height:320px"
data="//www.youtube.com/v/wAD9uO9YAQw?color2=FBE9EC&autoplay=1&version=3">
<param name="movie"
value="//www.youtube.com/v/wAD9uO9YAQw?color2=FBE9EC&autoplay=1&version=3" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
</object>
</div>
</div>
</div>
<!-- Slider -->
<div class="container-fluid">
<div class="row" style="height: auto;padding: 7vh 10vw 0vh 10vw;">
<h1>Newsflash</h1>
</div>
<div class="row" style="height: auto;padding: 3vh 10vw 8vh 10vw;">
<div class="MultiCarousel" data-items="1,3,5,6" data-slide="1" id="MultiCarousel" data-interval="1000">
<div class="MultiCarousel-inner">
<!-- First -->
<div class="item">
<div class="pad15">
<img src="https://iwa-network.org/wp-content/uploads/2020/02/IWA-and-CMWSSB--1024x680.jpg"
style="height : 120px; width : 120px">
</div>
</div>
<div class="item">
<div class="pad15" style="text-align : left; padding : 8px">
<p>JANUARY 27, 2020</p>
<a style="text-decoration : none; color : black" target="_blank" href="https://iwa-network.org/news/the-largest-water-utility-in-india-and-iwa-engage/"><h6>The largest Water Utility in India and IWA engage</h6></a>
</div>
</div>
<!-- Second -->
<div class="item">
<div class="pad15">
<img src="https://iwa-network.org/wp-content/uploads/2019/11/Serbian-committee-1024x682.jpg"
style="height : 120px; width : 120px">
</div>
</div>
<div class="item">
<div class="pad15" style="text-align : left; padding : 8px">
<p>JANUARY 15, 2020</p>
<a style="text-decoration : none; color : black" target="_blank" href="https://iwa-network.org/news/iwa-launches-a-new-young-water-professionals-chapter-in-serbia/"><h6>IWA Launches a new Young Water Professionals Chapter in Serbia</h6></a>
</div>
</div>
<!-- Third -->
<div class="item">
<div class="pad15">
<img src="https://iwa-network.org/wp-content/uploads/2019/12/NBS.jpg"
style="height : 120px; width : 120px">
</div>
</div>
<div class="item">
<div class="pad15" style="text-align : left; padding : 8px">
<p>DECEMBER 3, 2019</p>
<a style="text-decoration : none; color : black" target="_blank" href="https://iwa-network.org/news/launch-of-iwa-tnc-book-nature-for-water-a-series-of-utility-spotlights/"><h6>Launch of IWA-TNC Book – Nature for Water: A series of utility spotlights</h6></a>
</div>
</div>
<div class="item">
<div class="pad15">
<img src="https://iwa-network.org/wp-content/uploads/2019/10/Screen-Shot-2019-10-24-at-14.39.56-1024x388.png"
style="height : 120px; width : 120px">
</div>
</div>
<div class="item">
<div class="pad15" style="text-align : left; padding : 8px">
<p>OCTOBER 24, 2019</p>
<a style="text-decoration : none; color : black" target="_blank" href="https://iwa-network.org/news/la-comision-de-regulacion-de-agua-potable-y-saneamiento-basico-aderasa-e-iwa-promueven-la-gestion-sostenible-del-agua/"><h6>Reguladores de las Américas firman compromiso de acción para ...</h6></a>
</div>
</div>
<div class="item">
<div class="pad15">
<img src="https://iwa-network.org/wp-content/uploads/2019/10/YWP_4-1024x768.png"
style="height : 120px; width : 120px">
</div>
</div>
<div class="item">
<div class="pad15" style="text-align : left; padding : 8px">
<p>OCTOBER 11, 2019</p>
<a style="text-decoration : none; color : black" target="_blank" href="https://iwa-network.org/news/new-iwa-young-water-professionals-chapters-in-congo-and-czech-republic/"><h6>New IWA Young Water Professionals Chapters in Congo DRC, ...</h6></a>
</div>
</div>
<div class="item">
<div class="pad15">
<img src="https://iwa-network.org/wp-content/uploads/2019/10/P1200073-1024x524.jpg"
style="height : 120px; width : 120px">
</div>
</div>
<div class="item">
<div class="pad15" style="text-align : left; padding : 8px">
<p>OCTOBER 7, 2019</p>
<a style="text-decoration : none; color : black" target="_blank" href="https://iwa-network.org/news/shining-a-light-on-sustainable-use-of-water-in-ecuador/"><h6>Shining a Light on Sustainable Use of Water in Ecuador.</h6></a>
</div>
</div>
<div class="item">
<div class="pad15">
<img src="https://iwa-network.org/wp-content/uploads/2019/10/SC-2019-min-1024x505.jpg"
style="height : 120px; width : 120px">
</div>
</div>
<div class="item">
<div class="pad15" style="text-align : left; padding : 8px">
<p>OCTOBER 3, 2019</p>
<a style="text-decoration : none; color : black" target="_blank" href="https://iwa-network.org/news/iwa-strategic-council-2019-elected/"><h6>IWA Strategic Council 2019 elected</h6></a>
</div>
</div>
</div>
<button class="btn btn-primary leftLst">
<</button> <button class="btn btn-primary rightLst">>
</button>
</div>
</div>
</div>
<!--
<div class="container-fluid">
<div class="row " style="height: auto; background-color: black; padding: 7vh 10vw 5vh 10vw;">
<div class="col-xs-12 col-md-8" style="color : white;">
<h2>Five days of critical discussions into
the future of sustainable water management</h2>
</div>
<div class="col-xs-12" style="color : white; padding-left: 1vw">
<p style="font-size: 18px;">
Thought-leadership permeated workshops, debates, business forums, keynote speakers, technical and training sessions. Networking opportunities enabled new insights and partnerships, showcasing new ideas and solutions to solve the global water crisis.
</p>
</div>
</div>
<div class="row" style="height: auto; background-color: black; padding: 0 10vw 10vh 10vw;">
<div class="col-xs-12 col-md-6" style="border: 2px solid white; height: 400px; ">
</div>
<div class="col-xs-12 col-md-6" style="border: 2px solid white; height: 400px; ">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" style="height: auto; background-color: white; padding: 10vh 10vw 10vh 10vw;">
<div class="col-xs-12 col-md-6" style="min-height: 350px; height: auto;" >
<h1 style="font-weight: 700"><a href="#" style="color : rgb(64,157,225);">2018 Programme</a></h1>
<p style="font-size: 15px; margin-top: 5vh; padding-right: 20px; line-height: 2">
The IWA World Water Congress & Exhibition is the global event for water professionals covering the entire water cycle. As the Congress rotates through cities and countries each event has an extra emphasis on issues of specific interest to the region. The 2018 edition taking place in Tokyo will have as key focus the digital economy, megacities, diffusion of innovation, disaster resilience and sustainability. <a href="#">Check the programme online.</a>
</p>
</div>
<div class="col-xs-12 col-md-6" style="border: 2px solid black; min-height: 350px; height: auto;">
</div>
</div>
</div> -->
<!-- <div class="container-fluid">
<div class="row" style="height: auto; background-color: white; padding: 5vh 10vw 10vh 10vw;">
<div class="col-xs-12">
<h1 style="font-weight: 700">News</h1>
</div>
</div>
<div class="row" style="height: auto; background-color: white; padding: 2vh 10vw 10vh 10vw;">
<div class="col-xs-12 col-lg-3" style="border: 2px solid black;min-height: 300px; height: auto;">
</div>
<div class="col-xs-12 col-lg-3" style="border: 2px solid black;min-height: 300px; height: auto;">
</div>
<div class="col-xs-12 col-lg-3" style="border: 2px solid black;min-height: 300px; height: auto;">
</div>
<div class="col-xs-12 col-lg-3" style="border: 2px solid black;min-height: 300px; height: auto;">
</div>
</div>
<div class="row" style="height: auto; background-color: white; padding: 2vh 10vw 10vh 10vw; margin-top: 5vh">
<div class="col-xs-12 col-lg-3" style="border: 2px solid black;min-height: 300px; height: auto;">
</div>
<div class="col-xs-12 col-lg-3" style="border: 2px solid black;min-height: 300px; height: auto;">
</div>
<div class="col-xs-12 col-lg-3" style="border: 2px solid black;min-height: 300px; height: auto;">
</div>
<div class="col-xs-12 col-lg-3" style="border: 2px solid black;min-height: 300px; height: auto;">
</div>
</div>
</div> -->
<div class="container-fluid">
<div class="row" style="height: auto; padding: 2vh 10vw 8vh 10vw; ">
<div class="col-xs-12 col-lg-7" style="height: 420px;">
<iframe src="https://player.vimeo.com/video/217191032" style="border:0px #ffffff none;" name="myiFrame"
scrolling="no" frameborder="1" marginheight="0px" marginwidth="0px" height="420px" width="100%"
allowfullscreen></iframe>
<!-- <object type="application/x-shockwave-flash" style="width: 100%; height:420px;border-radius:5px " data="//www.youtube.com/v/wAD9uO9YAQw?color2=FBE9EC&autoplay=1&version=3">
<param name="movie" value="//www.youtube.com/v/wAD9uO9YAQw?color2=FBE9EC&autoplay=1&version=3" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
</object> -->
</div>
<div style="max-height: 0px" class="col-xs-12 col-lg-1">
</div>
<div class="col-xs-12 col-lg-4"
style="height: 420px;overflow: scroll;border-radius:5px ">
<a style="width: 100%;" class="twitter-timeline"
href="https://twitter.com/IWAHQ?ref_src=twsrc%5Etfw">Tweets by IWAHQ</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
<!-- background: linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .42)), url("images/tahHd.jpeg") center center no-repeat; -->
<div class="container-fluid"
style=" background:linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .42)), url('images/vitLake.jpg') no-repeat center center; background-size: cover">
<div class="row" style="height: auto;width: 99vw; padding: 5vh 10vw 10vh 10vw;">
<div class="col-12" style="color: white;height: auto; ">
<h2 style="font-size: 32px; font-weight: 700; margin-bottom: 5vh; padding-top: 3vh">
The Venue
</h2>
<p style="font-size: 18px;">
First Trans-Asia IWA-YWP Conference – Technoscape 2020 will be
held at Vellore Institute of Technology, Vellore, TN, INDIA
</p>
<a href="./view/theconference.html" style="text-decoration: none">
<div
style=" width : 200px; margin-top : 5vh; margin-bottom: 5vh; border: 2px solid rgb(64,157,225); text-align : center; padding: 5px; padding-right: 15px; padding-left: 15px; font-size: 1em; background-color: rgb(64,157,225); color : white">
About
</div>
</a>
</div>
</div>
</div>
<!--
<div class="container-fluid">
<div class="row" style="height: auto; background-color: white; padding: 10vh 10vw 10vh 10vw;">
<div class="col-xs-12 col-md-7" style="min-height: 350px; height: auto;" >
<h2 style="font-weight: 700">The global event for water professionals.</h2>
<p style="font-size: 15px; margin-top: 5vh; padding-right: 20px; line-height: 2">
The IWA World Water Congress & Exhibition brought together 9815 water, environment and related professionals from more than 100 countries and offers new insights into how pioneering science, technological innovation and leading practices shape the major transformation in water management that is underway. </p>
</div>
<div class="col-xs-12 col-md-5" style="border: 2px solid black; min-height: 300px; height: auto;">
</div>
</div>
</div>
-->
<!-- SPONERS -->
<!-- <div class="container-fluid">
<div class="row" style=" padding: 10vh 10vw 5vh 10vw;">
<h2 style="font-weight: 700">ORGANISERS</h2>
</div>
<div class="row" style="height: auto; background-color: white; padding: 10vh 10vw 10vh 10vw;">
<div class="col-12 col-md-6" style="height: auto; text-align : center" >
<img style="width: 100%; height: auto" src="images/vitLogo.png" alt="VIT">
</div>
<div class="col-12 col-md-6" style="height: auto; text-align : center">
<img style="width: 100%;height: auto" src="images/iwaLogo.jpg" alt="IWA">
</div>
</div>
</div> -->
<div class="container-fluid">
<div class="row bgImages" style="height: auto; padding: 0vh 10vw 8vh 10vw;background: #00ADEF">
<div class="col-xs-12" style="height: auto; margin-top: 8vh; margin-bottom: 5vh">
<h1 style="font-size: 3.3em;font-weight: 700;color:white">International Water Association</h1><br>
<p style="font-size: 20px;color: white">
Water underpins every aspect of human and environmental existence. The severe water
challenges facing the world today require an unprecedented global response. IWA members
and staff are based in 130 countries worldwide, forming the largest international network of
water professionals working towards a world that is water wise.
</p>
<a href="./view/theconference.html#aboutIwa" style="text-decoration: none">
<div
style=" width : 200px; margin-top : 5vh; margin-bottom: 0vh; border: 2px solid rgb(64,157,225); text-align : center; padding: 5px; padding-right: 15px; padding-left: 15px; font-size: 1em; background-color: white; color : #00ADEF">
Read More
</div>
</a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row bgImages" style="height: auto; padding: 0vh 10vw 8vh 10vw;">
<div class="col-xs-12" style="height: auto; margin-top: 8vh; margin-bottom: 5vh">
<h1 style="font-size: 3.3em;font-weight: 700">Young Water Professionals</h1><br>
<p style="font-size: 20px;">
It is clear that the water sector should invest in recruitment, management and development of
young staff, as well as put them at the forefront of design, development and implementation of
current change processes. It is not a concern of the future, but it should and is happening now!
</p>
<a href="./view/theconference.html#aboutYwp" style="text-decoration: none">
<div
style=" width : 200px; margin-top : 5vh; margin-bottom: 5vh; border: 2px solid rgb(64,157,225); text-align : center; padding: 5px; padding-right: 15px; padding-left: 15px; font-size: 1em; background-color: rgb(64,157,225); color : white">
Read More
</div>
</a>
</div>
</div>
</div>
<div class="container-fluid">
<div id="bgImages" class="row"
style="height: auto; padding: 10vh 10vw 8vh 10vw; background: #00ADEF;color: white">
<div class="col-12 col-lg-6"
style="height: auto; margin-top: 8vh; margin-bottom: 5vh;text-align: center;margin: auto auto">
<p style="font-size: 18px">
Do you want to make a difference in the world of water? Through IWA, you can actively take part in
various events and contribute to the changing practices for a better future.
So choose a membership package that suits you best and join us!
</p>
<a href="https://iwa-network.org/join/"
style="text-decoration: none;cursor: pointer;text-align: center;margin: auto auto">
<div
style=" width : 250px; margin-top : 5vh; margin-bottom: 5vh; border: 2px solid rgb(64,157,225); text-align : center; padding: 5px; padding-right: 15px; padding-left: 15px; font-size: 1em; background-color: white; color : #00ADEF">
TO BECOME IWA MEMBER
</div>
</a>
</div>
<div class="col-lg-6 col-12" style="height: auto; margin-top: 8vh; margin-bottom: 5vh;text-align: center;margin: auto auto">
<img src="images/iwaLogo.jpg" alt="IWA LOGO" height="auto" width="300">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" style="height: auto; background-color: white; padding: 4vh 10vw 5vh 10vw;">
<div class="col-xs-12">
<h1 style="font-size: 40px; font-weight: 700">Partner University</h1>
</div>
</div>
<div id="universities" class="row" style="height: auto; background-color: white;">
<div class="col-xs-12 col-md-6">
<div class="row" style="padding: 20px 20px">
<div class="col-3"><img style="width: 80px; height: auto;line-height: 100px" src="images/NKU.png"
alt="NKU"></div>
<div class="col-9" style="color: black;font-size: 1.2em;"><a href="http://www.nu.edu.om/"
style="text-decoration: none;cursor: pointer; position: absolute; top : 50%; transform : translateY(-50%)">National
Kaohsiung University of Science and
Technology, TAIWAN </a></div>
</div>
</div>
<div class="col-xs-12 col-md-6">
<div class="row" style="padding: 20px 20px">
<div class="col-3"><img style="width: 80px; height: auto;line-height: 100px"
src="images/Taipeitech.jpg" alt="NKU"></div>
<div class="col-9" style="color: black;font-size:18px;"><a href="https://www-en.ntut.edu.tw/"
style="text-decoration: none;cursor: pointer; position: absolute; top : 50%; transform : translateY(-50%)">
National Taipei University of Technology,
TAIWAN</a> </div>
</div>
</div>
</div>
<div id="universities" class="row" style="height: auto; background-color: white; ">
<div class="col-xs-12 col-md-6">
<div class="row" style="padding: 20px 20px">
<div class="col-3"><img style="width: 80px; height: auto;line-height: 100px" src="images/YNU.png"
alt="NKU"></div>
<div class="col-9" style="color: black;font-size:18px;margin-left: -10px"><a
href="https://www.ynu.ac.jp/"
style="text-decoration: none;cursor: pointer; position: absolute; top : 50%; transform : translateY(-50%)">
Yokohama National University, JAPAN</a> </div>
</div>
</div>
<div class="col-xs-12 col-md-6">
<div class="row" style="padding: 20px 20px">
<div class="col-3"><img style="width: 80px; height: auto;line-height: 100px" src="images/dst.JPG"
alt="NKU"></div>
<div class="col-9" style="color: black;font-size:18px;"> <a href="http://dstcpriisc.org/"
style="text-decoration: none;cursor: pointer; position: absolute; top : 50%; transform : translateY(-50%)">
DST Center for Policy Research, INDIA</a>
</div>
</div>
</div>
</div>
<div id="universities" class="row" style="height: auto; background-color: white; ">
<div class="col-xs-12 col-md-6">
<div class="row" style="padding: 20px 20px">
<div class="col-3"><img style="width: 80px; height: auto;line-height: 100px"
src="images/pg_logo_kolor.png" alt="NKU"></div>
<div class="col-9" style="color: black;font-size:18px;"><a
href="https://pg.edu.pl/welcome?p_l_id=52858455&p_v_l_s_g_id=0&"
style="text-decoration: none;cursor: pointer; position: absolute; top : 50%; transform : translateY(-50%)">
Gdansk University of Technology, POLAND</a> </div>
</div>
</div>
<div class="col-xs-12 col-md-6">
<div class="row" style="padding: 20px 20px">
<div class="col-3"><img style="width: 80px; height: auto;line-height: 100px" src="images/NU.png"
alt="NKU"></div>
<div class="col-9" style="color: black;font-size:18px;"><a href="https://www.ynu.ac.jp/"
style="text-decoration: none;cursor: pointer; position: absolute; top : 50%; transform : translateY(-50%)">National
University of Science and Technology,
OMAN</a> </div>
</div>
</div>
</div>
<div id="universities" class="row" style="height: auto; background-color: white; ">
<div class="col-xs-12 col-md-6">
<div class="row" style="padding: 20px 20px">
<div class="col-3"><img style="width: 80px; height: auto;line-height: 100px" src="images/Ulsan.png"
alt="NKU"></div>
<div class="col-9" style="color: black;font-size:18px;"><a
href="http://www.ulsan.ac.kr/FileNotFound.htm?aspxerrorpath=/eng/index.aspx"
style="text-decoration: none;cursor: pointer; position: absolute; top : 50%; transform : translateY(-50%)">University
of Ulsan, SOUTH KOREA </a></div>
</div>
</div>
<div class="col-xs-12 col-md-6">
<div class="row" style="padding: 20px 20px">
<div class="col-3"><img style="width: 80px; height: auto;line-height: 100px" src="images/MIU.png"
alt="NKU"></div>
<div class="col-9" style="color: black;font-size:18px;"><a href="https://miu.edu.my/"
style="text-decoration: none;cursor: pointer; position: absolute; top : 50%; transform : translateY(-50%)">Manipal
International University, MALAYSIA
</a> </div>
</div>
</div>