forked from fossasia/fossasia.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1006 lines (888 loc) · 48.9 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>About FOSSASIA | Asia's Open Technology Organization for Open Source Software, Open Hardware, Open Design, Open Data, Open Knowledge</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="About FOSSASIA - Developing Open Source Software and Hardware to improve people's lives. Solutions for Event Management, Artificial Intelligence, Big Data, Design Thinking and Free Knowledge Tools. FOSSASIA is Asia's Premier Open Technology Organization.">
<meta name="keywords" content="About FOSSASIA, FOSS, Free and Open Source Software, Asia">
<meta name="author" content="About FOSSASIA">
<meta property="og:title" content="About FOSSASIA" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://fossasia.github.io/fossasia15/img/fossasia-dark.png" />
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@fossasia">
<meta name="twitter:title" content="FOSSASIA">
<meta name="twitter:description" content="FOSSASIA Open Technology Community - Open Source, Big Data, Design Thinking and Free Knowledge Tools with Asia's Premier Open Technology Organization">
<meta name="twitter:creator" content="@fossasia">
<meta name="twitter:image" content="http://fossasia.github.io/fossasia15/img/fossasia-dark.png">
<link rel="shortcut icon" href="fossasia.ico" type="image/x-icon" />
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/flexslider.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/elegant-icons.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/pe-icon-7-stroke.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/theme-lava.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/custom-blog.css" rel="stylesheet" type="text/css" media="all"/>
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,300' rel='stylesheet' type='text/css'>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-17146009-5', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="no-loader">
<div class="loader">
<div class="strip-holder">
<div class="strip-1"></div>
<div class="strip-2"></div>
<div class="strip-3"></div>
</div>
</div>
<a id="top"></a>
<div class="nav-container">
<nav class="overlay-nav">
<div class="container">
<div class="row">
<div class="col-md-2">
<a target="_self" class="inner-link" href="#top"><img alt="FOSSASIA" class="logo logo-light" src="img/fossasia-long.png">
<img alt="FOSSASIA" class="logo logo-dark" src="img/fossasia-dark.png"></a>
</div>
<div class="col-md-10 text-right">
<ul class="menu">
<li class="has-dropdown"><a href="./about">About</a>
<ul class="nav-dropdown" style="min-height: 100px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="./about#background">Background & Mission</a></li>
<li><a target="_self" href="./licenses">Licenses</a></li>
<li><a target="_self" href="./team">Team</a></li>
</ul>
<li class="has-dropdown"><a href="./apply.html">Apply</a>
<ul class="nav-dropdown" style="min-height: 175px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="/apply-students">University Student Programs/Internships</a></li>
<li><a target="_self" href="/apply-pupils">Pre-University Student Programs/Internships</a></li>
<li><a target="_self" href="http://codeheat.org">Code Heat Contest</a></li>
<li><a target="_self" href="/adp">Advanced Developer Program</a></li>
</ul>
<li class="has-dropdown"><a href="http://labs.fossasia.org/#projects">Projects</a>
<ul class="nav-dropdown projects" style="min-height: 590px"> <!--whenever you add/remove an option, change the style="min-height:500px" by +- 25px-->
<li><a target="_self" href="https://github.com/fossasia">Contribute on Github</a></li>
<li><a target="_self" href="http://labs.fossasia.org/ideas.html">Project Ideas</a></li>
<li><a target="_self" href="http://labs.fossasia.org" target="_self">FOSSASIA Labs</a></li>
<li><a target="_self" href="http://susi.ai">SUSI.AI</a></li>
<li><a target="_self" href="http://Eventyay.com">eventyay</a></li>
<li><a target="_self" href="http://loklak.org">loklak Social Search</a></li>
<li><a target="_self" href="http://susper.com">Susper Seach Engine</a></li>
<li><a target="_self" href="http://yaydoc.org">Yaydoc Document Generator</a></li>
<li><a target="_self" href="http://phimp.me">Phimp.me Image App</a></li>
<li><a target="_self" href="http://meilix.fossasia.org">Meilix Linux</a></li>
<li><a target="_self" href="http://pslab.fossasia.org/">Pocket Science Lab</a></li>
<li><a target="_self" href="https://query-server.herokuapp.com/">Query Server</a></li>
<li><a target="_self" href="http://knitting.fossasia.org/">Knitting Lab</a></li>
<li><a target="_self" href="https://badgeyay-dev.herokuapp.com/">Badgeyay</a></li>
<li><a target="_self" href="http://gci17.fossasia.org">Code-In 2017</a></li>
<li><a target="_self" href="http://gci16.fossasia.org">Code-In 2016</a></li>
<li><a target="_self" href="http://gci15.fossasia.org">Code-In 2015</a></li>
<li><a target="_self" href="http://gci14.fossasia.org">Code-In 2014</a></li>
</ul>
<li><a target="_self" class="inner-link" href="#subscribe">Subscribe</a></li>
<li><a target="_self" href="http://blog.fossasia.org">Blog</a></li>
<li class="has-dropdown"><a href="http://events.fossasia.org">Events</a>
<ul class="nav-dropdown events" style="min-height: 570px"> <!--whenever you add/remove an option, change the style="min-height:425px" by +- 25px-->
<li><a target="_self" href="http://events.fossasia.org/#sponsorship">Sponsorship</a></li>
<li><a target="_self" href="http://eventyay.com">FOSSASIA Event Management</a></li>
<li><a target="_self" href="http://sciencehack.asia">Science Hack Asia</a></li>
<li><a target="_self" href="http://sciencehack.in">Science Hack India</a></li>
<li><a target="_self" href="http://2018.fossasia.org">FOSSASIA Summit 2018</a></li>
<li><a target="_self" href="http://opentechsummit.cn">OpenTechSummit China</a></li>
<li><a target="_self" href="http://jugaadfest.com">Jugaadfest India</a></li>
<li><a target="_self" href="http://2018.fossasia.org">FOSSASIA Summit 2018</a></li>
<li><a target="_self" href="http://2017.fossasia.org">FOSSASIA Summit 2017</a></li>
<li><a target="_self" href="http://2016.fossasia.org">FOSSASIA Summit 2016</a></li>
<li><a target="_self" href="http://2015.fossasia.org">FOSSASIA Summit 2015</a></li>
<li><a target="_self" href="http://2014.fossasia.org">FOSSASIA Summit 2014</a></li>
<li><a target="_self" href="http://2012.fossasia.org">FOSSASIA Summit 2012</a></li>
<li><a target="_self" href="http://2011.fossasia.org">FOSSASIA Summit 2011</a></li>
<li><a target="_self" href="http://2010.fossasia.org">FOSSASIA Summit 2010</a></li>
<li><a target="_self" href="http://2009.fossasia.org">GNOME.Asia 2009</a></li>
<li><a target="_self" href="http://coc.fossasia.org">Code of Conduct</a></li>
</ul>
</li>
<li class="hidden-sm hidden-xs"><a href="https://2018.fossasia.org" target="_self">Summit 2018</a></li>
<li class="hidden-sm hidden-xs"><a target="_self" href="./donate/">Donate</a></li>
<li class="social-link hidden-md hidden-sm hidden-xs"><a target="_self" href="https://twitter.com/fossasia"><i class="icon social_twitter"></i></a></li>
<li class="social-link hidden-md hidden-sm hidden-xs"><a target="_self" href="https://facebook.com/fossasia"><i class="icon social_facebook"></i></a></li>
<li class="social-link hidden-md hidden-sm hidden-xs"><a target="_self" href="https://github.com/fossasia"><i class="fa fa-github fa-lg"></i></a></li>
</ul>
<div class="sidebar-menu-toggle"><i class="icon icon_menu"></i></div>
<div class="mobile-menu-toggle"><i class="icon icon_menu"></i></div>
</div>
</div>
</div>
<div class="bottom-border"></div>
<div class="sidebar-menu">
<img alt="Logo" class="logo" src="img/fossasia-long.png">
<div class="bottom-border"></div>
<div class="widget">
<ul class="menu">
<li><a class="inner-link" href="#top">Home</a></li>
<li><a href="./about" target="_self">About</a></li>
<li><a href="http://eventyay.com" target="_self">Event Management</a></li>
<li><a class="inner-link" href="#labs" target="_self">Labs & Code</a></li>
<li><a href="http://github.com/fossasia" target="_self">Contribute</a></li>
<!-- <li><a class="inner-link" href="#support" target="_self">Support</a></li><li><a class="inner-link" href="#subscribe" target="_self">Subscribe</a></li> -->
<li><a href="http://2018.fossasia.org" target="_self">FOSSASIA Summit'18</a></li>
<li><a href="http://blog.fossasia.org" target="_self">Blog</a></li>
<li><a href="./donate/" target="self">Donate</a></li>
<li><a href="https://groups.google.com/group/fossasia" target="_self">Mailing List</a></li>
<li><a href="http://blog.fossasia.org/contact/" target="_self">Contact</a></li>
</ul>
</div>
<div class="widget">
<ul class="social-profiles">
<li><a href="http://twitter.com/fossasia" target="_self"><i class="icon social_twitter"></i></a></li>
<li><a href="http://facebook.com/fossasia" target="_self"><i class="icon social_facebook"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCQprMsG-raCIMlBudm20iLQ" target="_self"><i class="icon social_youtube icon-large"></i></a></li>
<li><a href="https://www.flickr.com/photos/fossasia/" target="_self"><i class="icon social_flickr"></i></a></li>
<li><a href="https://www.instagram.com/explore/tags/fossasia/" target="_self"><i class="icon social_instagram"></i></a></li>
<li><a href="https://github.com/fossasia" target="_self" ><i class="fa fa-github fa-lg"></i></a></li>
</ul>
</div>
<div class="copy-text-box">
<div class="copy-text-bottom">
<span>© Copyright 2016 Creative Commons By License, FOSSASIA</span>
</div>
</div>
</div>
</nav>
</div>
<div class="main-container">
<section class="hero-slider">
<ul class="slides">
<li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/IMG_6615.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<img alt="FOSSASIA" class="logo" src="img/fossasia-squarewhite-path.png">
<h1 class="large-h1 text-white">Bringing together an inspiring community across borders and ages to form a better future with Open Technologies and ICT</h1>
</div>
</div>
</div>
</li>
<li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/DSC_0525_0.JPG">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<img alt="FOSSASIA" class="logo" src="img/fossasia-squarewhite-path.png">
<h1 class="large-h1 text-white">Organizing training programs and coding meet ups for thousands of young kids, Open Tech developers and designers every year</h1>
</div>
</div>
</div>
</li>
<li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/OpenTechSummit-LinuxCommunity.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<img alt="FOSSASIA" class="logo" src="img/fossasia-squarewhite-path.png">
<h1 class="large-h1 text-white">Developing Free and Open Source Software and Hardware and cooperating with the most forward thinking Open Tech innovators and companies of the planet</h1>
</div>
</div>
</div>
</li><li class="hero-slide">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/community-map.jpg">
</div>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-7">
<img alt="FOSSASIA" class="logo" src="img/fossasia-squarewhite-path.png">
<h1 class="large-h1 text-white">Connecting Open Tech Communities across Asia with Developers, Designers and Makers from Around the World in the FOSSASIA Network</h1>
</div>
</div>
</div>
</li>
</ul>
</section>
<section class="color-blocks">
<div class="color-block block-left col-sm-12 col-md-6"></div>
<div class="color-block block-right col-sm-12 col-md-6"></div>
<div class="container">
<div class="row">
<a href="http://2018.fossasia.org/tickets" class="block-content" target="_self">
<div class="col-sm-4 text-center col-md-2">
<i class="icon pe-7s-cash icon-large"></i>
</div>
<div class="col-sm-8 col-md-4">
<h1>Join up with the Asian developer community and get a ticket for the FOSSASIA Summit 2018, 22-25 March in Singapore. </h1>
<p>
Catch our community special and save off your ticket!
</p>
</div>
</a>
<a href="https://2018.fossasia.org/speaker-registration" class="block-content" target="_self">
<div class="col-sm-4 text-center col-md-2">
<i class="icon pe-7s-sun icon-large"></i>
</div>
<div class="col-sm-8 col-md-4">
<h1>Become a speaker at the FOSSASIA Summit 2018 in Singapore!</h1>
<p>
Propose a talk or workshop in one of our tracks about Artificial Intelligence, Blockchain, Open Design, Internet Society and Policy, Open Hardware and many more.
</p>
</div>
</a>
<!-- <a href="/apply.html" class="block-content" target="_self">
<div class="col-sm-4 text-center col-md-2">
<i class="icon pe-7s-sun icon-large"></i>
</div>
<div class="col-sm-8 col-md-4">
<h1>Join our coding programs or fill open internship and job positions. Register now and apply!</h1>
<p>
We are constantly looking for good developers, who can join our developer programs or apply for internship and job vacancies at FOSSASIA. Please register yourself on our application page.
</p>
</div>
</a> -->
</div>
</div>
</section>
<a id="activities" class="in-page-link"></a>
<section class="duplicatable-content visitor-info">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>FOSSASIA Activities<br></h1>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/16704948658_0dff7bd62c_z.jpg">
<h3>Coding Programs<br></h3>
<p><div>FOSSASIA organizes local, regional and global developer trainings and coding contests. We also cooperate with partners in programs such as Google Summer of Code. Please join us and browse our open issues, mini-projects and GSoC ideas.</div><div><br><br></div></p>
<div class="text-link">
<a href="http://labs.fossasia.org/ideas.html" target="_self">Read about project ideas</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/16685244587_dc6defba93_z.jpg">
<h3>Developer Meetups and Conferences<br></h3>
<p>The FOSSASIA Open Tech Summit takes place once a year. We organize Science Hack Days and regular meetups throughout Asia from Beijing, Saigon, Singapore to Dubai. Please join our events or start a group in your region.<div><br></div><div></div></p>
<div class="text-link">
<a href="http://2018.fossasia.org" target="_self">Join the FOSSASIA Summit</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="info-box">
<img alt="Venue" src="img/16684326949_3f300eacf7_z.jpg">
<h3>Software and Hardware Development</h3>
<p>We develop applications for Science hack labs, software programs for events, community engagement and open data tools, and we support existing projects with resources. Visit FOSSASIA Labs for more info.<div><br></div><div><br></div></p>
<div class="text-link">
<a href="https://github.com/fossasia" target="_self">Contribute to our projects on GitHub</a>
</div>
</div>
</div>
</div>
</div>
</section>
<a id="labs" class="in-page-link"></a>
<section class="contained-gallery">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-6">
<div class="lightbox-gallery">
<ul>
<li>
<a href="img/fossaspa-app.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/fossaspa-app.jpg">
</div>
</a>
</li>
<li>
<a href="img/3dprinter.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/3dprinter.JPG">
</div>
</a>
</li>
<li>
<a href="img/machine-knitting.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/machine-knitting.jpg">
</div>
</a>
</li>
<li>
<a href="img/bodyapps-female-3d.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/bodyapps-female-3d.jpg">
</div>
</a>
</li>
<li>
<a href="img/ayab-knitting.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/ayab-knitting.jpg">
</div>
</a>
</li>
<li>
<a href="img/bodyapps-ui-3d.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/bodyapps-ui-3d.jpg">
</div>
</a>
</li>
<li>
<a href="img/lubuntu-netbook.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/lubuntu-netbook.jpg">
</div>
</a>
</li>
<li>
<a href="img/loklak-fossasia.jpg" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/loklak-fossasia.jpg">
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-5">
<h1>FOSSASIA Labs<div>Software and Hardware Projects</div></h1>
<p class="lead">
FOSSASIA develops software and hardware and cooperates with Open Tech projects. Please check out our Github and FOSSASIA Labs.
</p>
<a href="http://github.com/fossasia" class="btn" target="_self"></i>Contribute on Github</a>
<a href="./donate/" class="btn btn-hollow" target="_self">Donate Now</a>
</div>
</div>
</div>
</section>
<a id="about" class="in-page-link"></a>
<section class="topics duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Our Background and Mission<br></h1>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="topic">
<i class="pe-7s-loop icon-large"></i>
<h3>What We Do<br></h3>
<p class="lead">We bring amazing people together to create, develop, design and make things with Open Technologies - hardware and software - and share our work for the benefit of all. We organize Open Tech summits, science hack labs, meetups and coding programs with developers, designers and contributors.</p>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="topic">
<i class="pe-7s-share icon-large"></i>
<h3>Why We Do It<br></h3>
<p class="lead">Our main goal is to improve people's lives by sharing Open Tech solutions. We want to see that information technology and science has a positive impact on our society. We believe this can be achieved if people have access to digital tools and knowledge. Open Technologies offer free and open access. At FOSSASIA we are excited how sharing is possible on all layers from software, hardware and design to data and knowledge and we work hard to enable people to participate in the sharing society, expand knowledge, tools and opportunities, freedom of communication and expression for everyone.</p>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="topic">
<i class="pe-7s-users icon-large"></i>
<h3>Who We Are<br></h3>
<p class="lead">We are an organization of people from all continents based in Asia. We want to see progress and improvements of people's lives in Asia and everywhere. We are developers, designers, event organizers and contributors who want to learn and share ideas, create and make digital software tools and hardware, that benefit people around the world. FOSSASIA was founded in 2009 by <a href="https://hpdang.com" target="_self">Hong Phuc Dang</a> and <a href="http://twitter.com/mariobehling" target="_self">Mario Behling</a>.</p>
</div>
</div>
</div>
</div>
</section>
<a id="donate" class="in-page-link"></a>
<section class="pricing-options">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>We need your support to continue our work for you. We need funds for developing free and open source software and hardware, sharing of open knowledge, organizing events and meetups and to keep working with the community.<br></h1>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<a href="./donate/" target="_self">
<div class="pricing-option emphasis">
<div class="dot"></div>
<div class="col-md-6 text-center">
<span class="price">Please Donate</span>
</div>
<div class="col-md-6">
<span class="plan-title">Donation</span>
<ul>
<li>You can support us with a donation<br></li>
<li>via credit card, paypal,</li>
<li>or bank transfer</li>
</ul>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<section class="image-with-text background-dark preserve-3d">
<div class="container vertical-align">
<div class="row">
<div class="col-md-5 col-sm-7">
<h1 class="text-white">The FOSSASIA Summit is an annual conference featuring prominent Open Tech icons.</h1>
</div>
</div>
</div>
<div class="go-right side-image col-sm-4 col-md-6">
<div class="background-image-holder">
<img class="background-image" alt="About Image" src="img/IMG_1154_0.JPG">
</div>
</div>
</section>
<section class="strip-divider call-to-action">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="BG Image" src="img/grey-bg.jpg">
</div>
<div class="container">
<div class="row">
<div class="text-center col-sm-12">
<h1>Join us at the FOSSASIA OpenTechSummit<br> in March 2018 in Singapore!</h1>
<span class="uppercase">Don't Wait, Get your tickets right now</span>
<a target="_self" class="btn btn-lg" href="http://2018.fossasia.org">FOSSASIA Summit'18</a><a target="_self" class="btn btn-lg" href="http://2018.fossasia.org/tickets">Tickets</a>
<span class="uppercase">Oh, invite your friends too</span>
<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=fossasia.org"><i class="icon social_facebook icon-large"></i></a>
<a target="_blank" href="https://twitter.com/home?status=Join%20me%20for%20the%20%40FOSSASIA%20%23OpenTechSummit%20in%20March%202018%20in%20Singapore%20%3A%20https%3A//fossasia.org"><i class="icon social_twitter"></i></a>
<a target="_blank" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A//fossasia.org&title=Join%20me%20for%20the%20%40FOSSASIA%20%23OpenTechSummit%20in%20March%202018%20in%20Singapore&summary=FOSSASIA%20%7C%20Asia's%20Open%20Technology%20Organization%20for%20Open%20Source%20Software,%20Open%20Hardware,%20Open%20Design,%20Open%20Data,%20Open%20Knowledge&source="><i class="icon social_linkedin icon-large"></i></a>
<a target="_blank" href="https://plus.google.com/share?url=fossasia.org"><i class="icon social_googleplus icon-large"></i></a>
<a target="_blank" href="http://www.tumblr.com/share/link?url=https%3A%2F%2Ffossasia.org&name=Join%20me%20for%20the%20%40FOSSASIA%20%23OpenTechSummit%20in%20March%202018%20in%20Singapore!&description=FOSSASIA%20%7C%20Asia's%20Open%20Technology%20Organization%20for%20Open%20Source%20Software%2C%20Open%20Hardware%2C%20Open%20Design%2C%20Open%20Data%2C%20Open%20Knowledge"><i class="icon social_tumblr icon-large"></i></a>
<a target="_blank" href="https://pinterest.com/pin/create/button/?url=https%3A//fossasia.org&media=https%3A//2017.fossasia.org/img/fossasia2016.jpg&description=Join%20me%20for%20the%20%40FOSSASIA%20%23OpenTechSummit%20in%20March%202018%20in%20Singapore."><i class="icon social_pinterest icon-large"></i></a>
</div>
</div>
</div>
</section>
<section class="lightbox-gallery preserve-3d">
<div class="gallery-holder">
<ul>
<li>
<a href="img/IMG_1180_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/IMG_1180_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/DSC_0502_1_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/DSC_0502_1_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/DSC_0450_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/DSC_0450_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/IMG_5111_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/IMG_5111_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/DSC_0446_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/DSC_0446_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/IMG_1146_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/IMG_1146_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/FOSSASIA 2011 Open Source Software Conference_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/FOSSASIA 2011 Open Source Software Conference_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/FOSSASIA Social Event on Boat_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/FOSSASIA Social Event on Boat_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/Girls in Open Source and IT FOSSASIA_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/Girls in Open Source and IT FOSSASIA_0.JPG">
</div>
</a>
</li>
<li>
<a href="img/Free Open Source Summit Asia FOSSASIA_0.JPG" data-lightbox="true" data-title="Lightbox Image">
<div class="background-image-holder">
<img class="background-image" alt="Lightbox Image" src="img/Free Open Source Summit Asia FOSSASIA_0.JPG">
</div>
</a>
</li>
</ul>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div>
<i class="icon pe-7s-camera text-white"></i>
<h1 class="text-white">Memories from FOSSASIA Events<br></h1>
<span class="lead text-white">Follow our photostream on <strong><a class="text-white" href="https://www.flickr.com/photos/fossasia/" target="_self">Flickr</a></strong></span>
</div>
</div>
</div>
</div>
</section>
<a id="blog" class="in-page-link"></a>
<section class="subscribe-2">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<i class="icon pe-7s-pen"></i> <!--*************bug here ******************-->
<i class="icon pe-7s-news-paper icon-large"></i>
<i class="icon pe-7s-paper-plane"></i>
<h1 class="large-h1">Blog Posts</h1>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
<li data-target="#myCarousel" data-slide-to="4"></li>
<li data-target="#myCarousel" data-slide-to="5"></li>
<li data-target="#myCarousel" data-slide-to="6"></li>
<li data-target="#myCarousel" data-slide-to="7"></li>
<li data-target="#myCarousel" data-slide-to="8"></li>
<li data-target="#myCarousel" data-slide-to="9"></li>
</ol> <!-- Indicators -->
<div class="carousel-inner" role="listbox" id="result"> <!-- calls for JS function in blog.js-->
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="section-header overlay preserve3d" id="DevPrograms">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/hero7.jpg">
</div>
<div class="container vertical-align">
<div class="row">
<div class="col-sm-offset- col-sm-11">
<h1 class="text-white">FOSSASIA Ideas for Projects, Code Heat Contests, Developer Programs</h1>
<p class="lead text-white">FOSSASIA organizes coding programs around the year. We are proud to participate for several years as a mentor organization in the Summer of Code program of Google and at Google Code-In. Google Summer of Code offers students stipends to write code for our open source projects. In the #codeheat coding contest developers build up their code profile and participants can win trips to awesome Open Tech events. <a href="http://labs.fossasia.org/ideas.html" target="_self">Read more about our project ideas</a> and join the <a href="http://codeheat.org" target="_self">Code Heat coding contest</a> or register to get information for one of our <a href="http://fossasia.org/apply.html" target="_self">internship and job openings.</a></p>
</div>
</div>
</div>
</section>
<a id="join" class="in-page-link"></a>
<section class="strip-divider primary-overlay">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="About Image" src="img/hero7.jpg">
</div>
<div class="video-wrapper">
<video autoplay muted="" loop>
<source src="video/video.webm" type="video/webm">
<source src="video/video.mp4" type="video/mp4">
<source src="video/video.ogv" type="video/ogg">
</video>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1 class="text-white">Interested in coding for FOSSASIA?<div>Register on our application page for <a href="http://fossasia.org/apply.html" target="_self">internship and job openings</a>,</div><div>subscribe to our <a href="#subscribe" class="inner-link" target="_self">newsletter for announcements</a> </div><div>and start engaging by doing a <a href="https://github.com/fossasia/labs.fossasia.org/labels/mini-project" class="inner-link" target="_self">mini-project</a>.</div></h1>
</div>
</div>
</div>
</section>
<section class="inline-video">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>FOSSASIA Events, Hackathons and Science Hack Labs<br></h1>
</div>
</div>
<div class="row">
<div class="col-md-7">
<div class="embedded-video-holder vju">
<iframe src="https://www.youtube.com/embed/agcFs1hd47I"></iframe>
</div>
</div><div class="col-md-5">
<!--<p class="lead">FOSSASIA Events</p>--><p>Throughout the year FOSSASIA organizes meetups and events. The highlight is FOSSASIA Summit every year in March. FOSSASIA events are the place software development gets done. If you rely on open technologies, open source and hardware development, you must be a part of FOSSASIA events, be it as an attendee, speaker, volunteer or sponsor. You can also organize your own Open Tech event with the open event software at <a href="http://eventyay.com" target="_self">eventyay.com</a>.</p>
<a target="_self" href="http://eventyay.com" class="btn">Event Portal</a>
<a href="http://events.fossasia.org/#sponsorship" class="btn btn-hollow" target="_self">Sponsorship</a>
</div>
</div>
</div>
</section>
<section class="duplicatable-content">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>How Can I Support FOSSASIA</h1>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-4">
<div class="faq-item">
<p class="question">
Subscribe to FOSSASIA channels and spread Open Tech news.</p>
<p>
FOSSASIA members are active on social networks, Facebook, Twitter, Youtube, code platforms, mailing list and many more. Please help us to spread information and share your ideas. Let's start the conversation and subscribe to our newsletter.<br><br><a href="#subscribe" class="inner-link" target="_self">Subscribe to FOSSASIA mails</a></p>
</div>
</div><div class="col-md-3 col-sm-4">
<div class="faq-item">
<p class="question">
Become a contributor and solve a bug, implement a new feature or write a unit test.
</p>
<p>We are looking for your expertise, be it as a software developer, hardware maker, designer or administrator. Please join us and contribute to our projects on Github. Solving a bug, implementing a new feature, writing unit tests and giving feedback on existing projects is the first step before joining FOSSASIA coding programs.<br><br><a href="http://labs.fossasia.org/#projects" class="inner-link" target="_self">See an overview of projects here</a> <br> <a href="http://codeheat.org" class="inner-link" target="_self">Join our coding contest.</a></p>
</div>
</div><div class="col-md-3 col-sm-4">
<div class="faq-item">
<p class="question">
Donate to the FOSSASIA cause.
</p>
<p>
We need your support to continue the work for sharing of knowledge, code and design and organizing events and meetups. Please donate to our cause and help us to improve people's lives by offering open access to knowledge, ideas and digital tools.<br><br><a href="./donate/" target="_self">Donate Now</a></p>
</div>
</div><div class="col-md-3 col-sm-4">
<div class="faq-item">
<p class="question">
Join OpenTech meetups, organize own events and become a volunteer.
</p>
<p>
FOSSASIA groups and projects exist throughout Asia. Still there are many white spots left, where you can help to spread free knowledge and digital Open Technology tools. You can start by signing up on our Open Source Event organizer portal on eventyay.com and invite friends and community members. Also look out for other events on the portal or start your own.<br><br><a href="http://eventyay.com" target="_self">Visit eventyay.com now</a></p>
</div>
</div>
</div>
</div>
</section>
<a id="communitymap" class="in-page-link"></a>
<section class="color-blocks">
<div class="color-block block-left col-sm-12 col-md-6"></div>
<div class="color-block block-right col-sm-12 col-md-6"></div>
<div class="container">
<div class="row">
<a href="http://eventyay.com" class="block-content" target="_self">
<div class="col-sm-4 text-center col-md-2">
<i class="icon pe-7s-global icon-large"></i>
</div>
<div class="col-sm-8 col-md-4">
<h1>Organize your own event or meetup with eventyay!</h1>
<p>
The FOSSASIA event management and ticketing system makes it simple to create and organize events. Generate your own web and Android apps for your event and scan in tickets with the organizer app.
</p>
</div>
</a>
<a href="http://codeheat.org" class="block-content" target="_self">
<div class="col-sm-4 text-center col-md-2">
<i class="icon pe-7s-sun icon-large"></i>
</div>
<div class="col-sm-8 col-md-4">
<h1>Join #CODEHEAT, build up your developer profile and win fantastic prizes</h1>
<p>
"In the Heat of the Code" is a coding contest organized by FOSSASIA. Participate in the community, learn to develop awesome code and win trips to Open Tech conferences.
</p>
</div>
</a>
</div>
</div>
</section>
<a id="subscribe" class="in-page-link"></a>
<section class="subscribe-1">
<div class="background-image-holder parallax-background">
<img class="background-image" alt="Background Image" src="img/IMG_5111_0.JPG">
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1 class="large-h1 text-white">Subscribe to stay informed</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2">
<form class="email-subscribe" action="https://freelayers.net/subscribe" method="POST" accept-charset="utf-8">
<div class="col-sm-4 newsletter-name">
<input class="form-email signup-email-field" placeholder="Enter your name" type="text" name="name" id="name">
</div>
<div class="newsletter-email col-sm-5">
<input class="form-email signup-email-field" placeholder="Enter your email address" type="text" name="email" id="email">
</div>
<div class="newsletter-submit col-sm-3">
<input class="btn" value="Subscribe" type="submit" name="submit" id="submit">
<input type="hidden" name="list" value="A8fchTRvBw2wap1ojIfjyQ">
</div>
<div class="col-sm-12 text-center">
<span>*We never share your email with 3rd parties</span>
</div>
</form>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 text-center">
<div class="twitter-feed">
<i class="icon social_twitter text-white"></i>
<!-- For changing parameters of tweets-feed, please see https://github.com/fossasia/fossasia-loklak-webtweets/blob/gh-pages/README.md for the full documentation -->
<div class="tweets-feed" data-count=3 data-from="fossasia,fasblg,fa_voc,fossasiasg">
</div>
<br/>
<span class="text-white">Follow <a href="http://twitter.com/fossasia" target="_self">@fossasia</a> for more updates</span>
</div>
</div>
</div>
<div class="row">
<div class="footer">
<div class="col-sm-12">
<div class="top-border"></div>
</div>
</div>
</div>
</div>
</section>
<a id="partners" class="in-page-link"></a>
<section class="sponsors">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1>Friends and Partners</h1>
</div>
</div>
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://ffii.org" target="_self">
<img alt="FFII" src="img/FFII.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://kaiyuanshe.org" target="_self">
<img alt="Kai Yuan She" src="img/kaiyuanshe.png">
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 sponsor-column">
<div class="sponsor text-center">
<a href="http://opentechsummit.net" target="_self">
<img alt="OpenTechSummit" src="img/logo_opntec.png">
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-center">
<span>Interested in becoming a partner or sponsor? <a href="mailto:[email protected]" target="_self">Get in touch</a></span>
</div>
</div>
</div>
</section>
</div>
<div class="footer-container">
<footer class="classic">
<div class="container">
<div class="row ui-sortable">
<div class="col-sm-2">
<ul class="menu">
<li><a target="_self" href="http://blog.fossasia.org">Blog</a></li>
<li><a target="_self" href="http://github.com/fossasia">Github</a></li>
<li><a target="_self" href="http://labs.fossasia.org/#projects">Projects</a></li>
<li><a target="_self" href="http://coc.fossasia.org/">Code of Conduct</a></li>
<li><a target="_self" href="./about">About</a></li>
<li><a target="_self" href="http://blog.fossasia.org/contact">Contact</a></li>
<li><a target="_self" href="./donate/">Donate</a></li>
<li><a class="inner-link back-to-top" href="#top">Back To Top</a></li>
</ul>
</div>
<div class="col-sm-7">
<span class="lead color-heading">About FOSSASIA</span>
<p> FOSSASIA develops Open Source software and hardware for conversational AIs, science and event management with a global developer community from its base in Asia. The organization organizes Open Technology events, runs coding programs and the <a target="_self" href="https://codeheat.org" style="color:#777777">#Codeheat</a> development contest. The annual FOSSASIA Summit is the premier Open Technology event in Asia for developers, contributors, start-ups, and technology companies. FOSSASIA was founded in 2009 by <a target="_self" href="http://twitter.com/mariobehling" style="color:#777777">Mario Behling</a> and <a target="_self" href="http://twitter.com/hpdang" style="color:#777777">Hong Phuc Dang</a>.</p>
</div>
<div class="col-sm-3">
<ul class="contact-methods">
<li><i class="icon pe-7s-mail"></i><span><a id="mailAdd" href="mailto:[email protected]" target="_self" style="color:#777777">[email protected]</a></span></li>
<li><i class="icon pe-7s-phone"></i><span>+65 83435672</span></li>
<li><i class="icon pe-7s-map-marker"></i><span>FOSSASIA</span></li>
<li><span>Ms. DANG Hong Phuc</span></li>
<li><span>6 Eu Tong Sen Street #05-07 The Central, Singapore 059817</span></li>
</ul>
</div>
</div>
<div class="row ui-sortable">
<div class="col-sm-12 text-center">
<ul class="social-profiles">
<li><a target="_self" href="http://twitter.com/fossasia"><i class="icon social_twitter"></i></a></li>
<li><a target="_self" href="http://facebook.com/fossasia"><i class="icon social_facebook"></i></a></li>
<li><a target="_self" href="https://www.linkedin.com/groups/FOSSASIA-3762811"><i class="icon social_linkedin icon-large"></i></a></li>
<li><a target="_self" href="https://www.youtube.com/channel/UCQprMsG-raCIMlBudm20iLQ"><i class="icon social_youtube icon-large"></i></a></li>
<li><a target="_self" href="https://www.flickr.com/photos/fossasia"><i class="icon social_flickr icon-large"></i></a></li>
<li><a target="_self" href="https://www.instagram.com/explore/tags/fossasia/"><i class="icon social_instagram"></i></a></li>
<li><a target="_self" href="https://github.com/fossasia"><i class="fa fa-github fa-lg"></i></a></li>
</ul>
</div>
</div>
</div>
</footer>
</div>
<script>
// changes email address in homepage to make it responsive according to screen resolutions
if (screen.width <=853) {
document.getElementById('mailAdd').innerHTML = 'fossasia@google...';
}
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" ></script>
<script src="js/feednami.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/skrollr.min.js"></script>
<script src="js/spectragram.min.js"></script>
<script src="js/flexslider.min.js"></script>
<script src="js/jquery.plugin.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/lightbox.min.js"></script>
<script src="js/smooth-scroll.min.js"></script>