-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
665 lines (571 loc) · 58.7 KB
/
news.html
File metadata and controls
665 lines (571 loc) · 58.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello World</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- FontAwesome CSS -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- ElegantFonts CSS -->
<link rel="stylesheet" href="css/elegant-fonts.css">
<!-- themify-icons CSS -->
<link rel="stylesheet" href="css/themify-icons.css">
<!-- Swiper CSS -->
<link rel="stylesheet" href="css/swiper.min.css">
<!-- Styles -->
<link rel="stylesheet" href="style.css">
</head>
<body class="single-courses-page">
<div class="page-header">
<header class="site-header">
<div class="nav-bar">
<div class="container">
<div class="row">
<div class="col-9 col-lg-3">
<div class="site-branding">
<a class="header-logo" href="index.html"><img src="images/logo.png" alt=""></a>
</div><!-- .site-branding -->
</div><!-- .col -->
<div class="col-3 col-lg-9 flex justify-content-end align-content-center">
<nav class="site-navigation flex justify-content-end align-items-center">
<ul class="flex flex-column flex-lg-row justify-content-lg-end align-content-center">
<li class="current-menu-item"><a href="index.html">首页</a></li>
<li><a href="quiz.html">习题</a></li>
<li><a href="course_video.html">课程视频</a></li>
<li><a href="course_ppt.html">课件</a></li>
<li><a href="news.html">新闻</a></li>
<li><a href="introduction.html">课程介绍</a></li>
</ul>
</nav><!-- .site-navigation -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .nav-bar -->
</header><!-- .site-header -->
<div class="page-header-overlay">
<div class="container">
<div class="row">
<div class="col-12">
<header class="entry-header">
<h1 class="entry-title">The Unreal Engine Developer Course Learn C++ & Make Games</h1>
<div class="ratings flex justify-content-center align-items-center">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
<span>(4 votes)</span>
</div><!-- .ratings -->
</header><!-- .entry-header -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .page-header-overlay -->
</div><!-- .page-header -->
<div class="container">
<div class="row">
<div class="col-12 offset-lg-1 col-lg-10">
<div class="featured-image">
<img src="images/single-course-featured-img.jpg" alt="">
<div class="course-cost">Free</div>
</div>
</div><!-- .col -->
</div><!-- .row -->
<div class="row">
<div class="col-12 offset-lg-1 col-lg-1">
<div class="post-share">
<h3>share</h3>
<ul class="flex flex-wrap align-items-center p-0 m-0">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
<li><a href="#"><i class="fa fa-thumb-tack"></i></a></li>
</ul>
</div><!-- .post-share -->
</div><!-- .col -->
<div class="col-12 col-lg-8">
<div class="single-course-wrap">
<div class="course-info flex flex-wrap align-items-center">
<div class="course-author flex flex-wrap align-items-center mt-3">
<img src="images/course-author.jpg" alt="">
<div class="author-wrap">
<label class="m-0">Teacher</label>
<div class="author-name"><a href="#">Ms. Lara Croft</a></div>
</div><!-- .author-wrap -->
</div><!-- .course-author -->
<div class="course-cats mt-3">
<label class="m-0">Categories</label>
<div class="author-name"><a href="#">Web design</a></div>
</div><!-- .course-cats -->
<div class="course-students mt-3">
<label class="m-0">Student</label>
<div class="author-name"><a href="#">26 (REGISTERED)</a></div>
</div><!-- .course-students -->
<div class="buy-course mt-3">
<a class="btn" href="#">ADD to cart</a>
</div><!-- .buy-course -->
</div><!-- .course-info -->
<div class="single-course-cont-section">
<h2>What Will I Learn?</h2>
<ul class="p-0 m-0 green-ticked">
<li>Learn C++, the games industry standard language.</li>
<li>Develop strong and transferrable problem solving skills.</li>
<li>Gain an excellent knowledge of modern game development.</li>
<li>Learn how object oriented programming works in practice.</li>
<li>Gain a more fundamental understanding of computer operation.</li>
</ul>
<h2>Requirements</h2>
<ul class="p-0 m-0 black-doted">
<li>64-bit PC capable of running Unreal 4 (recommended).</li>
<li>Or a Mac capable of running Unreal 4 (must support Metal).</li>
<li>About 15GB of free disc space.</li>
</ul>
<h2>Description</h2>
<p>EW Testing Grounds FPS shipped, including...</p>
<p>Much more C++ and Blueprint.</p>
<p>AI Blackboards & Behavior Trees.</p>
<p>Environmental Query System (EQS).</p>
<p>Humanoid Animation Blending.</p>
<p>Never-ending Level Design.</p>
<p>The course now has high quality hand written subtitles throughout, available as closed captions so you can turn them on or off at your convenience.</p>
<p>This course started as a runaway success on Kickstarter. Get involved now, and get access to all future content as it's added. The final course will be over 50 hours of content and 300+ lectures.</p>
<p>Learn how to create and mod video games using Unreal Engine 4, the free-to-use game development platform used by AAA studios and indie developers worldwide.</p>
<p>We start super simple so you need no prior experience of Unreal or coding! With our online tutorials, you'll be amazed what you can achieve.</p>
<p>Benefit from our world-class support from both other students, and the instructors who are on the forums regularly. Go on to build several games including a tank game, and a First Person Shooter.</p>
<p>You will have access to a course forum where you can discuss topics on a course-wide basis, or down to the individual video. Our thriving discussion forum will help you learn and share ideas with other students.</p>
<p>You will learn C++, the powerful industry standard language from scratch. By the end of the course you'll be very confident in the basics of coding and game development, and hungry to learn more.</p>
<p>"Any serious game programmer needs to know C++"Jason Gregory, Lead Programmer at Naughty Dog (creators of Uncharted & The Last of Us)</p>
<p>Anyone who wants to learn to create games: Unreal Engine is a fantastic platform which enables you to make AAA-quality games. Furthermore these games can be created for Windows, consoles, MacOS, iOS, Android and Web from a single source!</p>
<p>If you're a complete beginner, we'll teach you all the coding and game design principles you'll need. If you're an artist, we'll teach you to bring your assets to life. If you're a coder, we'll teach you game design principles.</p>
<p>What this course DOESN'T cover...</p>
<p>Whereas this course is already huge, we can't possibly cover everything in that time. Here are some things we will not be covering...</p>
<h2>Who is the target audience?</h2>
<ul class="p-0 m-0 black-doted">
<li>Competent and confident with using a computer.</li>
<li>Artists who want to bring their assets alive in a game engine.</li>
<li>Developers who want to re-skill across to coding.</li>
<li>Complete beginners who are willing to work hard.</li>
<li>Existing programmers who want to re-skill to game development.</li>
</ul>
</div>
<div class="single-course-accordion-cont mt-3">
<header class="entry-header flex flex-wrap justify-content-between align-items-center">
<h2>Curriculum For This Course</h2>
<div class="number-of-lectures">340 Lectures</div>
<div class="total-lectures-time">42:57:42</div>
</header><!-- .entry-header -->
<div class="entry-contents">
<div class="accordion-wrap type-accordion">
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center active">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Introduction to this Course</span>
<span class="number-of-lectures">7 Lectures</span>
<span class="total-lectures-time">21:29</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Introduction to Front End Development</span>
<span class="number-of-lectures">4 Lectures</span>
<span class="total-lectures-time">26:45</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap align-items-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Introduction to HTML </span>
<span class="number-of-lectures">12 Lectures</span>
<span class="total-lectures-time">58:36</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Intermediate HTML</span>
<span class="number-of-lectures">12 Lectures</span>
<span class="total-lectures-time">01:12</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Introduction to this Course</span>
<span class="number-of-lectures">7 Lectures</span>
<span class="total-lectures-time">21:29</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Introduction to CSS</span>
<span class="number-of-lectures">12 Lectures</span>
<span class="total-lectures-time">01:39</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Intermediate CSS</span>
<span class="number-of-lectures">16 Lectures</span>
<span class="total-lectures-time">01:25</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Bootstrap</span>
<span class="number-of-lectures">16 Lectures</span>
<span class="total-lectures-time">01:59</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Introduction to JavaScript</span>
<span class="number-of-lectures">12 Lectures</span>
<span class="total-lectures-time">56:21</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">DOM Manipulation</span>
<span class="number-of-lectures">13 Lectures</span>
<span class="total-lectures-time">01:15</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Color Game Project</span>
<span class="number-of-lectures">10 Lectures</span>
<span class="total-lectures-time">01:47</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Intro to jQuery</span>
<span class="number-of-lectures">9 Lectures</span>
<span class="total-lectures-time">01:09</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Advanced jQuery</span>
<span class="number-of-lectures">5 Lectures</span>
<span class="total-lectures-time">34:34</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
<h3 class="entry-title flex flex-wrap justify-content-between align-items-lg-center">
<span class="arrow-r"><i class="fa fa-plus"></i><i class="fa fa-minus"></i></span>
<span class="lecture-group-title">Data Associations</span>
<span class="number-of-lectures">4 Lectures</span>
<span class="total-lectures-time">38:07</span>
</h3>
<div class="entry-content">
<ul class="p-0 m-0">
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">A Note On Asking For Help</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Introducing Our TA</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">01:43</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Our Class Chat Room</span><span class="lectures-preview"></span><span class="lectures-time text-left text-lg-right">07:48</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Why This Course?</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">01:39</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Download</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">2 pages</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Syllabus Walkthrough</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">09:40</span></li>
<li class="flex flex-column flex-lg-row align-items-lg-center"><span class="lecture-title">Lecture Slides</span><span class="lectures-preview">Preview</span><span class="lectures-time text-left text-lg-right">00:03</span></li>
</ul>
</div>
</div>
</div><!-- .entry-contents -->
</div><!-- .single-course-accordion-cont -->
<div class="instructors-info">
<header class="entry-heading">
<h2 class="entry-title">Instructors</h2>
</header><!-- .entry-heading -->
<div class="instructor-short-info flex flex-wrap">
<div class="instructors-stats">
<img src="images/instructor.jpg" alt="">
<ul class="p-0 m-0 mt-3">
<li><i class="fa fa-star"></i> 4.7 .7 Average rating</li>
<li><i class="fa fa-comment"></i> 25,182 Reviews</li>
<li><i class="fa fa-user"></i> 11,085 Students</li>
<li><i class="fa fa-play-circle"></i> 2 Courses</li>
</ul>
</div><!-- .instructors-stats -->
<div class="instructors-details">
<div class="ratings flex align-items-center">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
<span> (4 votes)</span>
</div><!-- .ratings -->
<h2 class="entry-title mt-3">The Unreal Engine Developer Course Learn C++ & Make Games</h2>
<div class="course-teacher mt-3">
Teacher: <a href="#">Ms. Lara Croft</a>
</div><!-- .course-teacher -->
<div class="entry-content mt-3">
<p>Hi! I'm Colt. I'm a developer with a serious love for teaching. I've spent the last few years teaching people to program at 2 different immersive bootcamps where I've helped hundreds of people become web developers and change their lives. My graduates work at companies like Google, Salesforce, and Square.</p>
</div><!-- .entry-content -->
</div><!-- .instructors-details -->
</div><!-- .instructor-short-info -->
</div><!-- .instructors-info -->
<div class="related-courses">
<header class="entry-heading flex flex-wrap justify-content-between align-items-center">
<h2 class="entry-title">Related Courses</h2>
<a href="#">View all</a>
</header><!-- .entry-heading -->
<div class="row mx-m-25">
<div class="col-12 col-lg-6 px-25">
<div class="course-content">
<figure class="course-thumbnail">
<a href="#"><img src="images/3.jpg" alt=""></a>
</figure><!-- .course-thumbnail -->
<div class="course-content-wrap">
<header class="entry-header">
<h2 class="entry-title"><a href="#">The Complete Digital Marketing Course</a></h2>
<div class="entry-meta flex flex-wrap align-items-center">
<div class="course-author"><a href="#">Ms. Lucius</a></div>
<div class="course-date">Dec 18, 2018</div>
</div><!-- .course-date -->
</header><!-- .entry-header -->
<footer class="entry-footer flex flex-wrap justify-content-between align-items-center">
<div class="course-cost">
$55 <span class="price-drop">$78</span>
</div><!-- .course-cost -->
<div class="course-ratings flex justify-content-end align-items-center">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star-o"></span>
<span class="course-ratings-count">(4 votes)</span>
</div><!-- .course-ratings -->
</footer><!-- .entry-footer -->
</div><!-- .course-content-wrap -->
</div><!-- .course-content -->
</div><!-- .col -->
<div class="col-12 col-lg-6 px-25">
<div class="course-content">
<figure class="course-thumbnail">
<a href="#"><img src="images/2.jpg" alt=""></a>
</figure><!-- .course-thumbnail -->
<div class="course-content-wrap">
<header class="entry-header">
<h2 class="entry-title"><a href="#">The Ultimate Drawing Course Beginner to Advanced</a></h2>
<div class="entry-meta flex flex-wrap align-items-center">
<div class="course-author"><a href="#">Michelle Golden</a></div>
<div class="course-date">Mar 14, 2018</div>
</div><!-- .course-date -->
</header><!-- .entry-header -->
<footer class="entry-footer flex flex-wrap justify-content-between align-items-center">
<div class="course-cost">
<span class="free-cost">Free</span>
</div><!-- .price-drop -->
<div class="course-ratings flex justify-content-end align-items-center">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star-o"></span>
<span class="course-ratings-count">(4 votes)</span>
</div><!-- .course-ratings -->
</footer><!-- .entry-footer -->
</div><!-- .course-content-wrap -->
</div><!-- .course-content -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .related-course -->
</div><!-- .single-course-wrap -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
<div class="clients-logo">
<div class="container">
<div class="row">
<div class="col-12 flex flex-wrap justify-content-center justify-content-lg-between align-items-center">
<div class="logo-wrap">
<img src="images/logo-1.png" alt="">
</div><!-- .logo-wrap -->
<div class="logo-wrap">
<img src="images/logo-2.png" alt="">
</div><!-- .logo-wrap -->
<div class="logo-wrap">
<img src="images/logo-3.png" alt="">
</div><!-- .logo-wrap -->
<div class="logo-wrap">
<img src="images/logo-4.png" alt="">
</div><!-- .logo-wrap -->
<div class="logo-wrap">
<img src="images/logo-5.png" alt="">
</div><!-- .logo-wrap -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .clients-logo -->
<footer class="site-footer">
<div class="footer-widgets">
<div class="container">
<div class="row">
<div class="col-12 col-md-4 col-lg-4 mt-5 mt-md-0">
<div class="foot-contact">
<h2>联系我们</h2>
<ul>
<li>地址: 上海市四平路1239号 致远楼</li>
<li>电话: 86-21-65981384</li>
</ul>
</div><!-- .foot-contact -->
</div><!-- .col -->
<div class="col-12 col-md-4 col-lg-3 mt-5 mt-md-0">
<div class="foot-contact">
<h2>快速通道</h2>
<ul>
<li><img src="images/link1.png"><a href="http://math.tongji.edu.cn/model/"> 数学建模</a></li>
<li><img src="images/link2.png"><a href="http://math.tongji.edu.cn/gaoshu/"> 高等数学</a></li>
</ul>
</div><!-- .foot-contact -->
</div><!-- .col -->
<div class="col-12 col-md-4 col-lg-5">
<div class="foot-about">
<a class="foot-logo" href="#"><img src="images/flogo.png" alt="" ></a>
<p class="footer-copyright">Copyright ©
<script>document.write(new Date().getFullYear());</script>
同济大学数学科学学院 版权所有.
</p>
</div><!-- .foot-about -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .footer-widgets -->
</footer><!-- .site-footer -->
<script type='text/javascript' src='js/jquery.js'></script>
<script type='text/javascript' src='js/swiper.min.js'></script>
<script type='text/javascript' src='js/masonry.pkgd.min.js'></script>
<script type='text/javascript' src='js/jquery.collapsible.min.js'></script>
<script type='text/javascript' src='js/custom.js'></script>
</body>
</html>