-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
755 lines (732 loc) · 47.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Web Programming, Technologies, and Applications</title>
<meta name="Description" content="An open course for full-stack developers that help turn ideas to systems and real impact.">
<meta name="author" content="Shan-Hung Wu">
<!-- Facebook Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Web Programming, Technologies, and Applications">
<meta property="og:title" content="Web Programming, Technologies, and Applications" />
<meta property="og:url" content="https://nthu-datalab.github.io/ss/" />
<meta property="og:description" content="An open course for full-stack developers that help turn ideas to systems and real impact." />
<meta property="og:image" content="http://www.cs.nthu.edu.tw/~shwu/images/og-image.jpg" />
<link rel="shortcut icon" href="./images/nthu.png" />
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/main.css" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#ss-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a id="nav~~shwu" class="navbar-brand" href="http://www.cs.nthu.edu.tw/~shwu/">Shan-Hung Wu</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="ss-navbar-collapse">
<ul class="nav navbar-nav">
<li>
<a id="nav~~description" href="#description">Description</a>
</li>
<li>
<a id="nav~~announcement" href="#announcement">Announcement</a>
</li>
<li class="dropdown">
<a id="nav~~curriculum" href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Curriculum <span class="caret"></span></a>
<ul class="dropdown-menu scrollable-menu">
<li><a id="nav~~lecture00" href="#lecture00" alt="">00. Introduction</a></li>
<li><a id="nav~~lecture01" href="#lecture01" alt="">01. Web Development and HTML</a></li>
<li><a id="nav~~lecture02" href="#lecture02" alt="">02. CSS</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~entrepreneur" href="#entrepreneur" alt="">How to Make Your Project Real?</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~lecture03" href="#lecture03" alt="">03. Landing Page and Bootstrap</a></li>
<li><a id="nav~~lecture04" href="#lecture04" alt="">04. Javascript - the Basics</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~entrepreneur02" href="#entrepreneur02" alt="">How to validate your idea?</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~lecture05" href="#lecture05" alt="">05. Modern Javascript</a></li>
<li><a id="nav~~lecture06" href="#lecture06" alt="">06. React</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~entrepreneur03" href="#entrepreneur03" alt="">How to retent your user?</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~lecture07" href="#lecture07" alt="">07. Redux</a></li>
<li><a id="nav~~lecture08" href="#lecture08" alt="">08. Backend Development and Node.js</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~entrepreneur04" href="#entrepreneur04" alt="">BP & Revenu</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~lecture09" href="#lecture09" alt="">09. Database Systems</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~entrepreneur05" href="#entrepreneur05" alt="">Growth</a></li>
<li role="separator" class="divider"></li>
<li><a id="nav~~lecture10" href="#lecture10" alt="">10. Web Security & Authentication</a></li>
<li><a id="nav~~lecture11" href="#lecture11" alt="">11. Mobile Apps and React Native</a></li>
<!-- <li><a id="nav~~final" href="#final" alt="">Final Project - Mobile App</a></li> -->
<!-- <li role="separator" class="divider"></li> -->
<!-- <li><a id="nav~~final-demo" href="#final-demo" alt="">Final Demos from Outstanding Students</a></li> -->
<!-- <li><a id="nav~~roadmap" href="#roadmap" alt="">Bonus: Learning Roadmap</a></li> -->
</ul>
</li>
<li>
<a id="nav~~resources" href="#resources">Resources</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Full width image header with portrait -->
<header class="header image-bg-header">
<div class="header-content header-text">
<h2>Web Programming, Technologies, and Applications</h2>
<h4>from Ideas to Systems to Real Impact</h4>
</div>
</header>
<!-- Content Sections -->
<section id="description">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<h1 class="section-heading">Description</h1>
<p>This course gives a comprehensive, self-contained, and up-to-date introduction to the web/app development. We focus on the development challenges in real-world situations and present guidelines, tools, and best practices. Students are asked
to team up and build real, useful applications (websites and/or mobile apps) accessible to the public in the end.</p>
<p>The classes are divided into three parts. First, we give a primer to web fundamentals such as HTTP, HTML, CSS, and Javascript. We cover different programming paradigms, including the OOP and functional programming. Handy tools such as Git are
covered to get students familiar with the project-based and team-based development. In the second part, we introduce modern web development techniques such as responsive design, Bootstrap, ES6/7, React, and Redux. Last, we extend our horizon
to the backend and mobile development landscapes by introducing the Node.js, PostgreSQL database system, Amazon Web Services (AWS), and React Native. We also give case studies on how to leverage Machine Learning algorithms to convert raw user
data into the AI.</p>
<p class="text-right">
<a id="syllabus" target="_blank" href="https://docs.google.com/spreadsheets/d/1Z4_SPTkRkdnjgWKLl715TXjVnVaF-uUm4FmzvEVkgUQ/edit?usp=sharing" class="btn btn-success"><span class="glyphicon glyphicon-calendar"></span> Syllabus(Tentative)</a>
</p>
<h4>Instructor</h4>
<div class="float-container">
<div class="float-item">
<img class="img-portrait" src="./images/portrait-2011-square.jpg" alt="">
<p class="text-center"><a id="description~~shwu" href="http://www.cs.nthu.edu.tw/~shwu/" target="_blank">Shan-Hung Wu<br/>吳尚鴻</a></p>
</div>
<br class="clearfloat">
</div>
<!-- float-container -->
<h4>Teaching Assistants</h4>
<div class="float-container">
<div class="float-item">
<img class="img-portrait" src="images/ta/ilwu.jpg" alt="">
<p class="text-center"><a id="description~~ilwu" href="mailto:[email protected]">I-Luh Wu<br/>*吳義路</a>
</p>
</div>
<div class="float-item">
<img class="img-portrait" src="images/ta/chlin.jpg" alt="">
<p class="text-center"><a id="description~~chlin" href="mailto:[email protected]">Cheng-Hong Lin<br/>林振弘</a>
</p>
</div>
<!-- <div class="float-item">
<img class="img-portrait" src="images/ta/ytlee.jpg" alt="">
<p class="text-center"><a id="description~~ytlee" href="mailto:[email protected]">Yan-Ting Lee<br/>李彥霆</a>
</p>
</div>
<div class="float-item">
<img class="img-portrait" src="images/ta/bhchiang.jpg" alt="">
<p class="text-center"><a id="teaching~~bhchiang" href="mailto:[email protected]">Bing-Han Chiang<br/>江秉翰</a>
</p>
</div> -->
<br class="clearfloat">
</div>
<!-- float-container -->
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-sm-6 col-md-5 col-md-offset-1 col-lg-4 col-lg-offset-2">
<h4>Time & Location</h4>
<ul>
<li>Video lectures: announced at Mon. afternoon</li>
<li>Labs: Mon. 3:30-5:20pm at Delta 105</li>
<li>Office hour: Wed. 3:30-5:20pm at Delta 729</li>
</ul>
</div>
<div class="col-sm-6 col-md-5 col-lg-4">
<h4>Grading Policy</h4>
<ul>
<li>Labs & homework: 40%</li>
<li>Idea: 10%</li>
<li>Idea validation: 10%</li>
<li>Design demo: 20%</li>
<li>MVP demo: 20%</li>
</ul>
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<h4>Prerequisites</h4>
<p>This course requires students to have solid understanding of
<ul>
<li>Data Structure,</li>
<li>Programming (in C/C++ or Java)</li>
</ul>
and the ability to trace a nontrivial project (e.g., one on the GitHub). We use Javascript as the main programming language throughout the course. Although being helpful, prior knowledge about Javascript is not necessary.
</p>
</div>
<!-- /.row -->
</div>
</div>
</section>
<!-- <section>
<div class="container">
<div id="announcement" class="row anchor">
<div class="alert alert-success col-sm-offset-0 col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<h1 class="section-heading">Announcement</h1>
<ul>
<li>
<p>2019/06/03 - <a id="announcement~~lecture11" href="#lecture11" alt="">11. React Native</a>: lab announced</p>
</li>
<li>
<p>2019/05/23 - <a id="announcement~~entrepreneur05" href="#entrepreneur05" alt="">Bonus: Growth</a>: slides announced</p>
</li>
<li>
<p>2019/05/23 - <a id="announcement~~entrepreneur04" href="#entrepreneur04" alt="">Bonus: BP & Revenu</a>: slides announced</p>
</li>
<li>
<p>2019/05/20 - <a id="announcement~~lecture10" href="#lecture10" alt="">10. Security & Authentication</a>: lab announced</p>
</li>
<li>
<p>2019/05/06 - <a id="announcement~~lecture09" href="#lecture09" alt="">09. Database Systems</a>: lab announced</p>
</li>
</ul>
<div id="announcement-more" class="collapse">
<ul>
<li>
<p>2019/04/29 - <a id="announcement~~lecture11" href="#lecture11" alt="">11. React Native</a>: slides and video announced</p>
</li>
<li>
<p>2019/04/29 - <a id="announcement~~lecture09" href="#lecture09" alt="">09. Database Systems</a>: slides and video announced</p>
</li>
<li>
<p>2019/04/29 - <a id="announcement~~lecture08" href="#lecture08" alt="">08. Backend Development and Node.js</a>: lab announced</p>
</li>
<li>
<p>2019/04/15 - <a id="announcement~~lecture08" href="#lecture08" alt="">08. Backend Development and Node.js</a>: slides and video announced</p>
</li>
<li>
<p>2019/04/15 - <a id="announcement~~lecture07" href="#lecture07" alt="">07. Redux</a>: assignment announced</p>
</li>
<li>
<p>2019/04/15 - <a id="announcement~~entrepreneur03" href="#entrepreneur03" alt="">Bonus: How to retent your user</a>: slides announced</p>
</li>
<li>
<p>2019/04/11 - <a id="announcement~~lecture07" href="#lecture07" alt="">07. Redux</a>: lab announced</p>
</li>
<li>
<p>2019/04/09 - <a id="announcement~~entrepreneur02" href="#entrepreneur02" alt="">Bonus: How to validate your idea</a>: slides announced</p>
</li>
<li>
<p>2019/04/08 - <a id="announcement~~lecture07" href="#lecture07" alt="">07. Redux</a>: slides and video announced</p>
</li>
<li>
<p>2019/03/26 - <a id="announcement~~lecture06" href="#lecture06" alt="">06. React</a>: slides and video announced</p>
</li>
<li>
<p>2019/03/22 - <a id="announcement~~lecture05" href="#lecture05" alt="">05. Modern JavaScript</a>: lab announced</p>
</li>
<li>
<p>2019/03/11 - <a id="announcement~~lecture05" href="#entrepreneur" alt="">Bonus: How to make your project real</a>: slides announced</p>
</li>
<li>
<p>2019/03/11 - <a id="announcement~~lecture05" href="#lecture05" alt="">05. Modern JavaScript</a>: slides and video announced</p>
</li>
<li>
<p>2019/03/05 - <a id="announcement~~lecture04" href="#lecture04" alt="">04. Javascript - the Basics</a>: slides and video announced</p>
</li>
<li>
<p>2019/03/04 - <a id="announcement~~lecture03" href="#lecture03" alt="">03. Landing page and bootstrap</a>: lab announced</p>
</li>
<li>
<p>2019/02/27 - <a id="announcement~~lecture00" href="#lecture00" alt="">00. Introduction</a>: slides and grading policy updated</p>
</li>
<li>
<p>2019/02/25 - <a id="announcement~~entrepreneur" href="#entrepreneur" alt="">Bonus: How to make your project real</a>: slides and video announced</p>
</li>
<li>
<p>2019/02/25 - <a id="announcement~~lecture03" href="#lecture03" alt="">03. Landing page and bootstrap</a>: slides and video announced</p>
</li>
<li>
<p>2019/02/25 - <a id="announcement~~lecture02" href="#lecture02" alt="">02. CSS</a>: lab announced</p>
</li>
<li>
<p>2019/02/22 - <a id="announcement~~lecture01" href="#lecture01" alt="">01. Web Development and HTML</a>: lab slides updated</p>
</li>
<li>
<p>2019/02/21 - <a id="announcement~~lecture02" href="#lecture02" alt="">02. CSS</a>: slides and video announced</p>
</li>
<li>
<p>2019/02/21 - <a id="announcement~~lecture01" href="#lecture01" alt="">01. Web Development and HTML</a>: lab announced</p>
</li>
<li>
<p>2019/02/18 - <a id="announcement~~lecture01" href="#lecture01" alt="">01. Web Development and HTML</a>: slides and video announced</p>
</li>
<li>
<p>2019/02/18 - <a id="announcement~~lecture00" href="#lecture00" alt="">00. Introduction</a>: slides announced</p>
</li>
<li>
<p>2018/06/04 - <a id="announcement~~lecture10~~slides" href="#lecture10" alt="">Web Security & Authentication</a>: slides announced</p>
</li>
<li>
<p>2018/04/30 - <a id="announcement~~entrepreneur03~~slides" href="#entrepreneur03" alt="">Revenue & Growth</a>: slides announced</p>
</li>
<li>
<p>2018/04/22 - <a id="announcement~~lecture06~~slides2" href="#lecture06~~slides2" alt="">ES8 Async & Await</a>: slides announced</p>
</li>
<li>
<p>2018/04/16 - <a id="announcement~~entrepreneur02_2~~slides" href="#entrepreneur02~~slides" alt="">Product Retention</a>: slides announced</p>
</li>
<li>
<p>2018/03/14 - <a id="announcement~~entrepreneur01_2~~slides" href="#entrepreneur" alt="">Business Plan & Execution</a>: slides announced</p>
</li>
</ul>
</div>
<p class="text-right">
<button id="announcement~~more" class="btn btn-success" data-toggle="collapse" data-target="#announcement-more"><span class="glyphicon glyphicon-list"></span> More</button>
</p>
</div>
</div>
</div>
</section> -->
<section id="curriculum">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<h1 class="section-heading">Curriculum</h1>
<p>If you have any feedback, feel free to contact: <a href="mailto:[email protected]">shwu [AT] cs.nthu.edu.tw</a></p>
<h4 id="lecture00" class="anchor">Lecture 00</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> Introduction</h4>
<blockquote>About This Course... | FAQ</blockquote>
<p class="text-right">
<a id="lecture00~~slides" href="slides/01_Introduction.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div>
<!-- <h4 id="lecture01" class="anchor">Lecture 01</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> HTTP&HTML</h4>
<blockquote>Web Development | Basic HTML | Idea Generation | Lean Canvas</blockquote>
<p class="text-right">
<a id="lecture01~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDlD86V7FNTP8d7JBvQmITrP" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture01~~slides" href="slides/web/01_Web_HTML.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> General Rules and Introduction to Git</h4>
<blockquote>This lab guides you through the main idea of version control systems, the basic usage of Git, and how to submit on our GitLab.</blockquote>
<p class="text-right">
<a id="lecture01~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/submission-exercise" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
<a id="lecture01~~lab" href="labs/01_Lab_Git.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> Git Command-line Tool Installation</h4>
<blockquote>This appendix guides you how to install Git command-line tool.</blockquote>
<p class="text-right">
<a id="lecture01~~app" href="labs/A_Git_Command-line_Tool_Installation.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="lecture02" class="anchor">Lecture 02</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> CSS</h4>
<blockquote>Basic CSS | Selector | Layout | Stacking order</blockquote>
<p class="text-right">
<a id="lecture02~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDkGpN5725ZP7jR2vTHayk4E" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture02~~slides" href="slides/web/02_CSS.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-pencil"></span> My First Blog</h4>
<blockquote>This lab quiz asks you to build a simple blog page.</blockquote>
<p class="text-right">
<a id="lecture02~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-css-blog-quiz" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
</p>
</div> -->
<!-- <h4 id="entrepreneur" class="anchor text-warning">Bonus: How to Make Your Project Real?</h4>
<div class="alert alert-warning">
<h4><span class="glyphicon glyphicon-flag"></span> Idea Generation</h4>
<blockquote>
<p>Here are some tips that help you to generate “good” Ideas.</p>
</blockquote>
<p class="text-right">
<a id="entrepreneur01~~video" href="https://www.youtube.com/watch?v=lt68yuHV4lc&list=PLlPcwHqLqJDlD86V7FNTP8d7JBvQmITrP&index=11" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="entrepreneur01~~slides" href="slides/entrepreneurship/01_Idea-Gen.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-flag"></span> Advanced: Business Plan & Execution</h4>
<blockquote>
<p>How to start your business plan</p>
</blockquote>
<p class="text-right">
<a id="entrepreneur01_2~~slides" href="slides/entrepreneurship/01_BP_Execution.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p> -->
<!-- <h4><span class="glyphicon glyphicon-flag"></span> Execution</h4>
<blockquote>
<p>TBA</p>
</blockquote>
<p class="text-right">
<a id="entrepreneur01~~slides" href="slides/entrepreneurship/01_Idea-Gen.pdf" class="btn btn-primary disabled"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p> -->
<!-- </div> -->
<!-- <h4 id="lecture03" class="anchor">Lecture 03</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> Bootstrap and Responsive Design</h4>
<blockquote>Product Design | Landing Page Demo | Basic Bootstrap | Layout | Flexbox | Media Queries | Containers | Grid sysem | Components | Tools</blockquote>
<p class="text-right">
<a id="lecture03~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDlwNSyaBRQ3yao5UyhhxQuf" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture03~~slides" href="slides/web/03_Bootstrap.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-pencil"></span> Bootstrap and Responsive Design</h4>
<blockquote>This lab quiz asks you to build a responsive web page.</blockquote>
<p class="text-right">
<a id="lecture03~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-flexb-resp-quiz" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
</p>
</div> -->
<!-- <h4 id="lecture04" class="anchor">Lecture 04</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> Javascript & DOM</h4>
<blockquote>Primitive Types | Object Types | Primitives v.s Objects | Expressions | Control Flows | Methods | DOM | Event Handling</blockquote>
<p class="text-right">
<a id="lecture04~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDlKxQfaWR1apRR9EPLz2-yG" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture04~~slides" href="slides/web/04_Javascript.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-pencil"></span> Color Game</h4>
<blockquote>This lab quiz asks you to improve the Color game by adding two extra modes.</blockquote>
<p class="text-right">
<a id="lecture04~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-js-color-game" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
</p>
</div> -->
<!-- <h4 id="entrepreneur02" class="anchor text-warning">Bonus: How to Validate Your Idea?</h4>
<div class="alert alert-warning">
<h4><span class="glyphicon glyphicon-flag"></span> Advanced: PSF & Idea Validation </h4>
<blockquote>
<p>Here are some tips for problem solution fit & value validation.</p>
</blockquote>
<p class="text-right">
<a id="entrepreneur02~~slides" href="slides/entrepreneurship/02_PSF.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="lecture05" class="anchor">Lecture 05</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> Modern Javascript</h4>
<blockquote>Node.js | Webpack | Vendor Bundling | Packing CSS | Babel | Block Scoped Variables | Arrow Functions | Default Rest Spread | Destructuring | Template String Literals | Enhanced Object Literals | Classes and Inheritance | Symbols | Iterators
and Generators | Property Initializers | OOP vs. FP</blockquote>
<p class="text-right">
<a id="lecture05~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDkPXpTPlMh8NtCUC-LWYb-f" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture05~~slides" href="slides/web/05_Modern-Javascript.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-pencil"></span> Tic-Tac-Toe</h4>
<blockquote>This quiz asks you to build a Tic-Tac-Toe.</blockquote>
<p class="text-right">
<a id="lecture05~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-js-tic-tac-toe-component-based" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> Review</h4>
<blockquote>A review of component-based programming at the client side by TAs.</blockquote>
<p class="text-right">
<a id="lecture05~~review" href="labs/05_Lab_Component_based_Game.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="lecture06" class="anchor">Lecture 06</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> React</h4>
<blockquote>React | Components | JSX | States and Data flow | Form Elements | More JSX | Client-side Routing | AJAX | Debugging | Weather mood project</blockquote>
<p class="text-right">
<a id="lecture06~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDm9ZW6n7f6JGwLXO9ctuW3R" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture06~~slides" href="slides/react/01_React.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-blackboard"></span> Bonus</h4>
<blockquote> ES8 Async | Await</blockquote>
<p class="text-right">
<a id="lecture06~~slides2" href="slides/react/01-2_ES8_Async_Await.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> Testing</h4>
<blockquote>This lab shows how to write and run tests in your applications.</blockquote>
<p class="text-right">
<a id="lecture06~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-testing" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
<a id="lecture06~~lab" href="labs/06_Tests.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> React Revisited and Google Map </h4>
<blockquote>This lab review some key concepts of React and introduces google map api.</blockquote>
<p class="text-right">
<a id="lecture06~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-react-google-map" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
<a id="lecture06~~lab" href="labs/06_Lab_React_Review_googlemap.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-pencil"></span> WeatherMood: forecast </h4>
<blockquote>Your goal is to improve the WeatherMood project by adding one page which shows 5-days forecast.</blockquote>
<p class="text-right">
<a id="lecture06~~assignment" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-react-weathermood-forecast" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
</p>
</div> -->
<!-- <h4 id="entrepreneur03" class="anchor text-warning">Bonus: How to Retent Your User?</h4>
<div class="alert alert-warning">
<h4><span class="glyphicon glyphicon-flag"></span> Advanced: From Acquization to Retention </h4>
<blockquote>
<p>Here are some tips for product market fit.</p>
</blockquote>
<p class="text-right">
<a id="entrepreneur03~~slides" href="slides/entrepreneurship/03_Retention.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="lecture07" class="anchor">Lecture 07</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> Redux </h4>
<blockquote>Redux | Why Redux | Action and Reducers | Splitting Reducers | Async Actions and Middleware | React+Redux | Remarkers | DevTools </blockquote>
<p class="text-right">
<a id="lecture07~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDndwtjgYp0mYtllK83Eco1U" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture07~~slides" href="slides/react/02_Redux.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> Tracing WeatherMood </h4>
<blockquote>This lab details the post function of the WeatherMood project.</blockquote>
<p class="text-right">
<a id="lecture07~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-react-weathermood-post" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
<a id="lecture07~~lab" href="labs/07_Lab_Weathermood_Post.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-pencil"></span> WeatherMood: redux-post </h4>
<blockquote>Your mission here is to use Redux to re-write the post function.</blockquote>
<p class="text-right">
<a id="lecture07~~assignment" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/redux-weathermood-post" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
<a id="lecture07~~lab" href="labs/08_Lab_Redux.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="lecture08" class="anchor">Lecture 08</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> Backend Developement and Node.js</h4>
<blockquote> Node.js | Events and Asynchrnonous I/O | NPM and Yarg | Debugging | RESTful API | Express | Nodemon and Postman | Cloud Computing | Docker | AWS Elastic Beanstalk</blockquote>
<p class="text-right">
<a id="lecture08~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDkxqZqqAfElde6eESUCz0YO" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture08~~slides" href="slides/backend/01_Node_Backend.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> Deployment on AWS </h4>
<blockquote>This lab gives you a step-by-step guide on how to deploy an app to the AWS.</blockquote>
<p class="text-right">
<a id="lecture08~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-weathermood-server-file-todo" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
<a id="lecture08~~lab" href="labs/08_Lab_AWS.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <div class="alert alert-warning">
<h4 id="entrepreneur04"><span class="glyphicon glyphicon-flag"></span> Advanced: BP & Revenue</h4>
<blockquote>
<p> Business Planning | Revenue </p>
</blockquote>
<p class="text-right">
<a id="entrepreneur04~~slides" href="slides/entrepreneurship/04_BP_Revenue.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="lecture09" class="anchor">Lecture 09</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> Database Systems </h4>
<blockquote> Data Modeling | SQL Language | Surviving Big Data | Text Indexing | AWS RDS and Deployment</blockquote>
<p class="text-right">
<a id="lecture09~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDkLsH0P-TiAP_83XQaBWnAS" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture09~~slides" href="slides/backend/02_DB.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> Data Model </h4>
<blockquote>Introducing data models at the server side.</blockquote>
<p class="text-right">
<a id="lecture09~~lab" href="labs/09_Lab_Data_Model.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> Advanced SQL </h4>
<blockquote>This lab introduces some advanced SQL operations.</blockquote>
<p class="text-right">
<a id="lecture09~~lab" href="labs/09_Lab_Advanced_SQL.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> WeatherMood: DB </h4>
<blockquote>Combine WeatherMood with RDS service</blockquote>
<p class="text-right">
<a id="lecture09~~lab" href="labs/09_Lab_RDS.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
<a id="lecture09~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-weathermood-server-db-todo" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
</p>
</div>
<div class="alert alert-warning">
<h4 id="entrepreneur05"><span class="glyphicon glyphicon-flag"></span> Advanced: Growth </h4>
<blockquote>
<p> Metric | Actions & Psychology </p>
</blockquote>
<p class="text-right">
<a id="entrepreneur05~~slides" href="slides/entrepreneurship/05_Growth.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="lecture10" class="anchor">Lecture 10</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-wrench"></span> Web Security & Authentication</h4>
<blockquote>This lecture introduces the basics of web security.</blockquote>
<p class="text-right">
<a id="lecture10~~slides" href="slides/backend/03_Web-Security.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-pencil"></span> Authentication with AWS Amplify </h4>
<blockquote>Use amplify to add authentication to your website </blockquote>
<p class="text-right">
<a id="lecture10~~lab" href="labs/09_Lab_Amplify.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
<a id="lecture010~~lab" href="https://shwu10.cs.nthu.edu.tw/courses/web-app/2019-spring/lab-weathermood-auth" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
</p>
</div> -->
<!-- <h4 id="lecture11" class="anchor">Lecture 11</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-blackboard"></span> React Native </h4>
<blockquote> React Native | Styling | Event Handling | Images and Icons | Data Access and Persistence | NativeBase | ScrollView and ListView | Navigation </blockquote>
<p class="text-right">
<a id="lecture11~~video" href="https://www.youtube.com/playlist?list=PLlPcwHqLqJDnhXHlgF4tiKYN-K39zYMtR" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="lecture11~~slides" href="slides/react/03_React_Native.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
<h4><span class="glyphicon glyphicon-wrench"></span> Setting It Up</h4>
<blockquote>This lab guides you through the setups of React Native on various devices.</blockquote>
<p class="text-right">
<a id="lecture10~~lab" href="labs/10_Lab_React_Native_Setup.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="final-demo" class="anchor text-info">Final Demos from Outstanding Students</h4>
<div class="alert alert-info">
<h4><span class="glyphicon glyphicon-flag"></span> Let's COLOR </h4>
<blockquote>
<p>Play with the colors around you!</p>
<p>Author : 李峻毅、王俊凱</p>
</blockquote>
<p class="text-right">
<a id="final-demo~~video" href="https://youtu.be/MJ3S4pRk7vM" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
</p>
<h4><span class="glyphicon glyphicon-flag"></span> NTHU Stage </h4>
<blockquote>
<p>We decide what we learn.</p>
<p>Author : 張嘉軒、林軒毅、劉承諭、賴詰凱</p>
</blockquote>
<p class="text-right">
<a id="final-demo~~video" href="https://youtu.be/vKAAIMyIpRc" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
</p>
<h4><span class="glyphicon glyphicon-flag"></span> Librarian </h4>
<blockquote>
<p>Librarian, your mobile library.</p>
<p>Author : 林晉祥、許文弘、諸恩弘、朱彥睿</p>
</blockquote>
<p class="text-right">
<a id="final-demo~~video" href="https://www.youtube.com/watch?v=Bt-zN63X3kI" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
</p>
<h4><span class="glyphicon glyphicon-flag"></span> GreenThumb </h4>
<blockquote>
<p>Gardening has never been easier.</p>
<p>Author : 蔡冠偉、湯景皓、黃睿緯、李辰康</p>
</blockquote>
<p class="text-right">
<a id="final-demo~~video" href="https://youtu.be/BIRd-df9Qzs" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
</p>
<h4><span class="glyphicon glyphicon-flag"></span> NTHU Chat </h4>
<blockquote>
<p>Chat with friends you slipped during school life.</p>
<p>Author : 吳家榮、葉毓浩、陳永恒</p>
</blockquote>
<p class="text-right">
<a id="final-demo~~video" href="https://youtu.be/XhnjWhmZwl0" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
</p>
</div> -->
<!-- <h4 id="roadmap" class="anchor text-warning">Bonus: Learning Roadmap</h4>
<div class="alert alert-warning">
<h4><span class="glyphicon glyphicon-flag"></span> What to Lean Next?</h4>
<blockquote>
<p>Thank you all for participating in this course. For students who want to go further in web/app development, we have some recommendations for you.</p>
</blockquote>
<p class="text-right">
<a id="roadmap~~video" href="https://www.youtube.com/watch?v=p1CDMGzE3tc&t=7s&index=14&list=PLlPcwHqLqJDnhXHlgF4tiKYN-K39zYMtR" class="btn btn-success"><span class="glyphicon glyphicon-play"></span> Video</a>
<a id="roadmap~~slides" href="slides/Learning-Roadmap.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<section id="resources">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<h1 class="section-heading">Resources</h1>
<p>Here are some course materials and resources related to this course. For code and its details (such as assigned reading, project links, quiz, etc.) please refer to the GitLab. For online forum please refer to the iLMS system.</p>
<p class="text-right">
<a id="resources~~gitlab" href="https://shwu10.cs.nthu.edu.tw/courses/software-studio/2020-spring" target="_blank" class="btn btn-primary"><span class="fa fa-gitlab" aria-hidden="true"></span> GitLab</a>
<a id="resources~~ilms" href="https://lms.nthu.edu.tw/course/43467" target="_blank" class="btn btn-primary"><span class="glyphicon glyphicon-comment"></span> iLMS System</a>
</p>
<!-- <h4 id="midterm" class="anchor">Midterm Project Requirements</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-flag"></span> Goal and Grading policy</h4>
<blockquote>
<p>Here is the grading policy of your midterm project. Your goal is the build a fully functional, responsive, and novel web app that is accessible to the public.</p>
</blockquote>
<p class="text-right">
<a id="midterm~~slides" href="labs/Midterm_Policy.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<!-- <h4 id="final" class="anchor">Final Project Requirements</h4>
<div class="well">
<h4><span class="glyphicon glyphicon-flag"></span> Goal and Grading Policy</h4>
<blockquote>
<p>Here are the grading policy of your final project. Your goal is the build a mobile app that complements your website and improves the user experience.</p>
</blockquote>
<p class="text-right">
<a id="final~~slides" href="labs/Final_Policy.pdf" class="btn btn-primary"><span class="glyphicon glyphicon-blackboard"></span> Slides</a>
</p>
</div> -->
<h4>Reference Books</h4>
<ul>
<li>
<p>Alexander Osterwalder, Business Model Generation: A Handbook for Visionaries, Game Changers, and Challengers, 2010</p>
</li>
<li>
<p>Eric Ries, The Lean Startup: How Today's Entrepreneurs Use Continuous Innovation to Create Radically Successful Businesses, 2011</p>
</li>
<li>
<p>Peter Thiel, Blake Masters, Zero to One: Notes on Startups, or How to Build the Future, 2014</p>
</li>
</ul>
<h4>Online Tutorial</h4>
<ul>
<li>
<p><a id="resources~~mdn" href="https://developer.mozilla.org" alt="" target="_blank">Mozilla Developer Network (MDN)</a></p>
</li>
<li>
<p><a id="resources~~w3schools" href="https://www.w3schools.com/" alt="" target="_blank">W3Schools Online Web Tutorials</a></p>
</li>
<li>
<p><a id="resources~~w3schools" href="https://aws.amazon.com/" alt="" target="_blank">Amazon Web Services (AWS)</a></p>
</li>
<li>
<p><a id="resources~~reactjs" href="http://reactjs.co/" alt="" target="_blank">React Convention: A coding by Convention Guide for React JS and React Native Developers</a></p>
</li>
</ul>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-sm-12">
<p class="text-center">Copyright © DataLab 2020</p>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</footer>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Fontawesome -->
<script src="https://use.fontawesome.com/f123208514.js"></script>
<script src="./js/main.js"></script>
</body>
</html>