-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses-list.html
1007 lines (975 loc) · 64.2 KB
/
courses-list.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">
<!-- courses-list21:19 -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Courses List</title>
<!-- Css Files -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet">
<link href="css/flaticon.css" rel="stylesheet">
<link href="css/slick-slider.css" rel="stylesheet">
<link href="css/prettyphoto.css" rel="stylesheet">
<link href="build/mediaelementplayer.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="css/color.css" rel="stylesheet">
<link href="css/color-two.css" rel="stylesheet">
<link href="css/color-three.css" rel="stylesheet">
<link href="css/color-four.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for 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/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--// Main Wrapper \\-->
<div class="wm-main-wrapper">
<!--// Header \\-->
<header id="wm-header" class="wm-header-one">
<!--// TopStrip \\-->
<div class="wm-topstrip">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-language"> <ul> <li><a href="#">English</a></li> <li><a href="#">español</a></li> </ul> </div>
<ul class="wm-stripinfo">
<li><i class="wmicon-location"></i> 2925 Swick Hill Street, Charlotte, NC 28202</li>
<li><i class="wmicon-technology4"></i> +1 984-700-7129</li>
<li><i class="wmicon-clock2"></i> Mon - fri: 7:00am - 6:00pm</li>
</ul>
<ul class="wm-adminuser-section">
<li>
<a href="#" data-toggle="modal" data-target="#ModalLogin">login</a>
</li>
<li>
<a href="#">Contact</a>
</li>
<li>
<a href="#" class="wm-search-btn" data-toggle="modal" data-target="#ModalSearch"><i class="wmicon-search"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--// TopStrip \\-->
<!--// MainHeader \\-->
<div class="wm-main-header">
<div class="container">
<div class="row">
<div class="col-md-3"><a href="index-2.html" class="wm-logo"><img src="images/logo-1.png" alt=""></a></div>
<div class="col-md-9">
<!--// Navigation \\-->
<nav class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1" aria-expanded="true">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a>
<ul class="wm-dropdown-menu">
<li><a href="index-2.html">Education Home V1</a></li>
<li><a href="index-two.html">Education Home V2</a></li>
<li><a href="index-three.html">Education Home V3</a></li>
<li><a href="index-four.html">Education Home V4</a></li>
</ul>
</li>
<li><a href="#">courses</a>
<ul class="wm-dropdown-menu">
<li><a href="courses-grid.html">Courses Grid</a></li>
<li><a href="courses-list.html">Courses List</a></li>
<li><a href="courses-detail.html">Courses Detail</a></li>
</ul>
</li>
<li><a href="#">event</a>
<ul class="wm-dropdown-menu">
<li><a href="event-grid.html">Event Grid</a></li>
<li><a href="event-detail.html">Event Detail</a></li>
</ul>
</li>
<li ><a href="#">Dashboard</a>
<ul class="wm-dropdown-menu">
<li><a href="dashboard-courses.html">Courses</a></li>
<li><a href="student-dashboard-favourite.html">Favourite</a></li>
<li><a href="student-dashboard-my-courses.html">My Courses</a></li>
<li><a href="student-dashboard-profile.html">Profile Settings</a></li>
<li><a href="student-dashboard-settings.html">Settings</a></li>
<li><a href="student-dashboard-statement.html">Statement</a></li>
</ul>
</li>
<li class="wm-megamenu-li"><a href="#">Pages</a>
<ul class="wm-megamenu">
<li class="row">
<div class="col-md-2">
<h4>Link 1</h4>
<ul class="wm-megalist">
<li><a href="404-page.html">404 Error Page</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="blog-grid.html">Blog Grid</a></li>
<li><a href="blog-list.html">Blog List</a></li>
<li><a href="blog-detail.html">Blog Detail</a></li>
<li><a href="faq-page.html">Faq Page</a></li>
</ul>
</div>
<div class="col-md-2">
<h4>Link 2</h4>
<ul class="wm-megalist">
<li><a href="ourprofessors.html">Our Professors</a></li>
<li><a href="our-professsors-detail.html">Our Professsors Detail</a></li>
<li><a href="typography-elements.html">Typography Elements</a></li>
<li><a href="courses-list.html">Courses List</a></li>
<li><a href="courses-grid.html">Courses Grid</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</div>
<div class="col-md-2">
<h4>Link 3</h4>
<ul class="wm-megalist">
<li><a href="courses-detail.html">Courses Detail</a></li>
<li><a href="shop-list.html">Shop List</a></li>
<li><a href="shop-grid.html">Shop Grid</a></li>
<li><a href="shop-single-product.html">Shop Detail</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</div>
<div class="col-md-6">
<a href="#" class="wm-thumbnail">
<img src="extra-images/megamenu-frame.jpg" alt="" />
</a>
</div>
</li>
</ul>
</li>
<li><a href="contact-us.html">Shop</a>
<ul class="wm-dropdown-menu">
<li><a href="shop-grid.html">Shop Grid</a></li>
<li><a href="shop-list.html">Shop List</a></li>
<li><a href="shop-single-product.html">Shop Detail</a></li>
</ul>
</li>
<li class="wm-megamenu-li"><a href="#">Contact</a>
<ul class="wm-megamenu">
<li class="row">
<div class="col-md-2">
<h4>Links 1</h4>
<ul class="wm-megalist">
<li><a href="contact-us.html">Contact Us</a></li>
<li><a href="404-page.html">404 Error Page</a></li>
<li><a href="shop-list.html">Shop List</a></li>
<li><a href="shop-grid.html">Shop Grid</a></li>
<li><a href="shop-single-product.html">Shop Detail</a></li>
</ul>
</div>
<div class="col-md-5">
<h4>Artists text</h4>
<div class="wm-mega-text">
<p>Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love.</p>
<p>If you haven't found it yet, keep looking. Don't settle. As with all matters of the heart, you'll know when you find it.</p>
</div>
</div>
<div class="col-md-5">
<h4>sub category widget</h4>
<a href="#" class="wm-thumbnail">
<img src="extra-images/mega-menuadd.jpg" alt="" />
</a>
</div>
</li>
</ul>
</li>
</ul>
</div>
</nav>
<!--// Navigation \\-->
<a href="#" class="wm-header-btn">get started</a>
</div>
</div>
</div>
</div>
<!--// MainHeader \\-->
</header>
<!--// Header \\-->
<!--// Mini Header \\-->
<div class="wm-mini-header">
<span class="wm-blue-transparent"></span>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-mini-title">
<h1>Our Courses</h1>
</div>
<div class="wm-breadcrumb">
<ul>
<li><a href="index-2.html">Home</a></li>
<li><a href="index-2.html">Courses</a></li>
<li>List</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Mini Header \\-->
<!--// Main Content \\-->
<div class="wm-main-content">
<!--// Main Section \\-->
<div class="wm-main-section">
<div class="container">
<div class="row">
<aside class="col-md-3">
<div class="widget wm-search-course">
<h3 class="wm-short-title wm-color">Find Your Course</h3>
<p>Find your course here:</p>
<form>
<ul>
<li>
<div class="wm-radio">
<div class="wm-radio-partition">
<input id="male" type="radio" name="gender" value="male">
<label for="male">by ID</label>
</div>
<div class="wm-radio-partition">
<input id="female" type="radio" name="gender" value="female">
<label for="female">by name</label>
</div>
</div>
</li>
<li> <input type="text" value="Course Name" onblur="if(this.value == '') { this.value ='Course Name'; }" onfocus="if(this.value =='Course Name') { this.value = ''; }"> <i class="wmicon-search"></i> </li>
<li>
<div class="wm-apply-select">
<select>
<option>Category</option>
<option>Category</option>
<option>Category</option>
<option>Category</option>
</select>
</div>
</li>
<li> <input type="submit" value="Search course"> </li>
</ul>
</form>
</div>
<div class="widget widget_check-box widget_scroll-box">
<h5>Search By Type</h5>
<ul>
<li>
<input id="type1" type="checkbox">
<label for="type1">
<span></span>
All Courses
</label>
</li>
<li>
<input id="type2" type="checkbox">
<label for="type2">
<span></span>
Chemistry
</label>
</li>
<li>
<input id="type3" type="checkbox">
<label for="type3">
<span></span>
Classical Archaeology
</label>
</li>
<li>
<input id="type4" type="checkbox">
<label for="type4">
<span></span>
Classics & English
</label>
</li>
<li>
<input id="type5" type="checkbox">
<label for="type5">
<span></span>
Materials Science
</label>
</li>
<li>
<input id="type6" type="checkbox">
<label for="type6">
<span></span>
Mathematics
</label>
</li>
<li>
<input id="type7" type="checkbox">
<label for="type7">
<span></span>
Physics & Philosophy
</label>
</li>
<li>
<input id="type8" type="checkbox">
<label for="type8">
<span></span>
Theology & Religion
</label>
</li>
<li>
<input id="type9" type="checkbox">
<label for="type9">
<span></span>
Classics & English
</label>
</li>
<li>
<input id="type10" type="checkbox">
<label for="type10">
<span></span>
Materials Science
</label>
</li>
<li>
<input id="type11" type="checkbox">
<label for="type11">
<span></span>
Mathematics
</label>
</li>
<li>
<input id="type12" type="checkbox">
<label for="type12">
<span></span>
Physics & Philosophy
</label>
</li>
<li>
<input id="type13" type="checkbox">
<label for="type13">
<span></span>
Theology & Religion
</label>
</li>
</ul>
</div>
<div class="widget widget_check-box">
<h5>Search By Price</h5>
<div class="wm-range-slider">
<div id="slider-range" class="ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all">
<div class="ui-slider-range ui-widget-header ui-corner-all" style="left: 0%; width: 60%;"></div>
<span class="ui-slider-handle ui-state-default ui-corner-all" tabindex="0" style="left: 0%;"></span>
<span class="ui-slider-handle ui-state-default ui-corner-all" tabindex="0" style="left: 60%;"></span>
</div>
<form>
<input id="amount" type="text" readonly="" value="$59">
<input type="submit" value="Clear Filters">
</form>
</div>
</div>
<div class="widget widget_check-box">
<h5>Search By Availability</h5>
<ul>
<li>
<input id="avail1" type="checkbox">
<label for="avail1">
<span></span>
Current
</label>
</li>
<li>
<input id="avail2" type="checkbox">
<label for="avail2">
<span></span>
Upcoming
</label>
</li>
<li>
<input id="avail3" type="checkbox">
<label for="avail3">
<span></span>
Self-Placed
</label>
</li>
<li>
<input id="avail4" type="checkbox">
<label for="avail4">
<span></span>
Arhived
</label>
</li>
</ul>
</div>
<div class="widget widget_check-box">
<h5>Search By Level</h5>
<ul>
<li>
<div class="wm-level-checkbox">
<input id="level1" type="checkbox">
<label for="level1">
<span></span>
Introductory
</label>
</div>
<div class="wm-levelrating">
<span class="rating-box" style="width:30%"></span>
</div>
</li>
<li>
<div class="wm-level-checkbox">
<input id="level2" type="checkbox">
<label for="level2">
<span></span>
Intermediate
</label>
</div>
<div class="wm-levelrating">
<span class="rating-box" style="width:65%"></span>
</div>
</li>
<li>
<div class="wm-level-checkbox">
<input id="level3" type="checkbox">
<label for="level3">
<span></span>
Advanced
</label>
</div>
<div class="wm-levelrating">
<span class="rating-box" style="width:100%"></span>
</div>
</li>
</ul>
</div>
<div class="widget widget_check-box widget_scroll-box">
<h5>Search By Language</h5>
<ul>
<li>
<input id="land1" type="checkbox">
<label for="land1">
<span></span>
Chinese / Mandarin
</label>
</li>
<li>
<input id="land2" type="checkbox">
<label for="land2">
<span></span>
Spanish
</label>
</li>
<li>
<input id="land3" type="checkbox">
<label for="land3">
<span></span>
English / U.S Spoken
</label>
</li>
<li>
<input id="land4" type="checkbox">
<label for="land4">
<span></span>
Italian
</label>
</li>
<li>
<input id="land5" type="checkbox">
<label for="land5">
<span></span>
French
</label>
</li>
<li>
<input id="land6" type="checkbox">
<label for="land6">
<span></span>
German
</label>
</li>
<li>
<input id="land7" type="checkbox">
<label for="land7">
<span></span>
Russian
</label>
</li>
<li>
<input id="land8" type="checkbox">
<label for="land8">
<span></span>
Arabic / Egyptian Spoken
</label>
</li>
<li>
<input id="land9" type="checkbox">
<label for="land9">
<span></span>
Italian
</label>
</li>
<li>
<input id="land10" type="checkbox">
<label for="land10">
<span></span>
French
</label>
</li>
<li>
<input id="land11" type="checkbox">
<label for="land11">
<span></span>
German
</label>
</li>
<li>
<input id="land12" type="checkbox">
<label for="land12">
<span></span>
Russian
</label>
</li>
<li>
<input id="land13" type="checkbox">
<label for="land13">
<span></span>
Arabic / Egyptian Spoken
</label>
</li>
</ul>
</div>
<div class="widget widget_check-box">
<h5>Search By Duration</h5>
<ul>
<li>
<input id="duration1" type="checkbox">
<label for="duration1">
<span></span>
Under 1 hr
</label>
</li>
<li>
<input id="duration2" type="checkbox">
<label for="duration2">
<span></span>
1hr - 1hr 30mins
</label>
</li>
<li>
<input id="duration3" type="checkbox">
<label for="duration3">
<span></span>
2 hrs
</label>
</li>
<li>
<input id="duration4" type="checkbox">
<label for="duration4">
<span></span>
2 hrs - 3hrs
</label>
</li>
</ul>
</div>
</aside>
<div class="col-md-9">
<div class="wm-filter-box">
<div class="wm-apply-select">
<select>
<option>By Category</option>
<option>By Category</option>
<option>By Category</option>
<option>By Category</option>
</select>
</div>
<div class="wm-apply-select">
<select>
<option>Search By</option>
<option>Search By</option>
<option>Search By</option>
<option>Search By</option>
</select>
</div>
<div class="wm-normal-btn">
<a href="#" class="active">Free</a>
<a href="#">Paid</a>
</div>
<div class="wm-view-btn">
<a href="#" class="wmicon-squares active"></a>
<a href="#" class="wmicon-signs"></a>
</div>
</div>
<div class="wm-courses wm-courses-popular wm-courses-mediumsec">
<ul class="row">
<li class="col-md-12">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-1.jpg" alt=""> <span class="wm-popular-hover"> <small>see course</small> </span> </a>
<figcaption>
<img src="extra-images/papular-courses-thumb-1.jpg" alt="">
<h6><a href="#">Shelly T. Forrester</a></h6>
</figcaption>
</figure>
<div class="wm-popular-courses-text">
<h6><a href="#">Advanced Architectural Research</a></h6>
<p>The course combines study of the history, archaeology and art of all these classical world. It looks at the societies and cultures of the ancient Greel Mediterranean world through their written texts.</p>
<div class="wm-courses-price"> <span>$32</span> </div>
<ul>
<li><a href="#" class="wm-color"><i class="wmicon-social7"></i> 342</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-social6"></i> 10</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-time2"></i> 1 year</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-location"></i> Campus L2</a></li>
</ul>
</div>
</div>
</li>
<li class="col-md-12">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-2.jpg" alt=""> <span class="wm-popular-hover"> <small>see course</small> </span> </a>
<figcaption>
<img src="extra-images/papular-courses-thumb-2.jpg" alt="">
<h6><a href="#">Sam K. Harrington</a></h6>
</figcaption>
</figure>
<div class="wm-popular-courses-text">
<h6><a href="#">Advanced Landscape & Urbanism</a></h6>
<p>Fine Art is the making and study of visual art. It educates and prepares students to become artists and to follow other practices that are aligned to the making of art.</p>
<div class="wm-courses-price"> <span>Free</span> </div>
<ul>
<li><a href="#" class="wm-color"><i class="wmicon-social7"></i> 438</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-social6"></i> 28</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-time2"></i> 2 year</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-location"></i> Campus L1</a></li>
</ul>
</div>
</div>
</li>
<li class="col-md-12">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-3.jpg" alt=""> <span class="wm-popular-hover"> <small>see course</small> </span> </a>
<figcaption>
<img src="extra-images/papular-courses-thumb-3.jpg" alt="">
<h6><a href="#">Sara A. Shirley</a></h6>
</figcaption>
</figure>
<div class="wm-popular-courses-text">
<h6><a href="#">Transdisciplinary Design</a></h6>
<p>The Ruskin School of Art offers a three-year studio-based BFA course in which students work alongside each other in collaboratively organised studios.</p>
<div class="wm-courses-price"> <span>$79</span> </div>
<ul>
<li><a href="#" class="wm-color"><i class="wmicon-social7"></i> 309</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-social6"></i> 19</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-time2"></i> 1 year</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-location"></i> Campus L3</a></li>
</ul>
</div>
</div>
</li>
<li class="col-md-12">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-5.jpg" alt=""> <span class="wm-popular-hover"> <small>see course</small> </span> </a>
<figcaption>
<img src="extra-images/papular-courses-thumb-4.jpg" alt="">
<h6><a href="#">Julius M. Lepage</a></h6>
</figcaption>
</figure>
<div class="wm-popular-courses-text">
<h6><a href="#">Economics & Quality Management</a></h6>
<p>Whereas many fine art courses run in an environment devoted exclusively to art and design, Ruskin students, as members of a collegiate university, have the advantage of contact.</p>
<div class="wm-courses-price"> <span>$50</span> </div>
<ul>
<li><a href="#" class="wm-color"><i class="wmicon-social7"></i> 298</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-social6"></i> 11</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-time2"></i> 1 year</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-location"></i> Campus L2</a></li>
</ul>
</div>
</div>
</li>
<li class="col-md-12">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-6.jpg" alt=""> <span class="wm-popular-hover"> <small>see course</small> </span> </a>
<figcaption>
<img src="extra-images/papular-courses-thumb-5.jpg" alt="">
<h6><a href="#">Kayla A. McCrea</a></h6>
</figcaption>
</figure>
<div class="wm-popular-courses-text">
<h6><a href="#">Philosophy, Politics and Economics (PPE)</a></h6>
<p>Jack Stanton, who graduated in 2013 and now works as a professional artist, recalls: ‘I think the most important element of the Ruskin is the seriousness with which your work is considered by tutors.</p>
<div class="wm-courses-price"> <span>$99</span> </div>
<ul>
<li><a href="#" class="wm-color"><i class="wmicon-social7"></i> 222</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-social6"></i> 76</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-time2"></i> 1 year</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-location"></i> Campus L2</a></li>
</ul>
</div>
</div>
</li>
<li class="col-md-12">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-7.jpg" alt=""> <span class="wm-popular-hover"> <small>see course</small> </span> </a>
<figcaption>
<img src="extra-images/papular-courses-thumb-6.jpg" alt="">
<h6><a href="#">Allan L. Oakes</a></h6>
</figcaption>
</figure>
<div class="wm-popular-courses-text">
<h6><a href="#">Modern Languages and Linguistics</a></h6>
<p>The first year of the course is structured to introduce students to each other, to the resources of the school and to the staff involved in teaching and running the Ruskin.</p>
<div class="wm-courses-price"> <span>$49</span> </div>
<ul>
<li><a href="#" class="wm-color"><i class="wmicon-social7"></i> 248</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-social6"></i> 21</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-time2"></i> 2 year</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-location"></i> Campus L3</a></li>
</ul>
</div>
</div>
</li>
<li class="col-md-12">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-8.jpg" alt=""> <span class="wm-popular-hover"> <small>see course</small> </span> </a>
<figcaption>
<img src="extra-images/papular-courses-thumb-7.jpg" alt="">
<h6><a href="#">Virginia R. Cruz</a></h6>
</figcaption>
</figure>
<div class="wm-popular-courses-text">
<h6><a href="#">History (Ancient and Modern)</a></h6>
<p>The intimate working environment of the school, arranged in two buildings, allows art history, theory and criticism to be treated as integral to the development of studio work. </p>
<div class="wm-courses-price"> <span>$79</span> </div>
<ul>
<li><a href="#" class="wm-color"><i class="wmicon-social7"></i> 188</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-social6"></i> 11</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-time2"></i> 1 year</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-location"></i> Campus L2</a></li>
</ul>
</div>
</div>
</li>
<li class="col-md-12">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-9.jpg" alt=""> <span class="wm-popular-hover"> <small>see course</small> </span> </a>
<figcaption>
<img src="extra-images/papular-courses-thumb-8.jpg" alt="">
<h6><a href="#">Roslyn W. Beavers</a></h6>
</figcaption>
</figure>
<div class="wm-popular-courses-text">
<h6><a href="#">Classical Archaeology & Ancient History</a></h6>
<p>After graduation, most students go on to work in fine art as practising artists, teachers and art writers, or as curators in public and private galleries and for arts councils and organisations.</p>
<div class="wm-courses-price"> <span>$89</span> </div>
<ul>
<li><a href="#" class="wm-color"><i class="wmicon-social7"></i> 176</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-social6"></i> 30</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-time2"></i> 1 year</a></li>
<li><a href="#" class="wm-color"><i class="wmicon-location"></i> Campus L2</a></li>
</ul>
</div>
</div>
</li>
</ul>
</div>
<div class="wm-pagination">
<ul>
<li><a href="#" aria-label="Previous"> <i class="wmicon-arrows4"></i> Previous</a></li>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li>...</li>
<li><a href="#">18</a></li>
<li><a href="#" aria-label="Next"> <i class="wmicon-arrows4"></i> Next</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
</div>
<!--// Main Content \\-->
<!--// Footer \\-->
<footer id="wm-footer" class="wm-footer-one">
<!--// FooterNewsLatter \\-->
<div class="wm-footer-newslatter">
<div class="container">
<div class="row">
<div class="col-md-12">
<form>
<i class="wmicon-interface2"></i>
<input type="text" value="Enter your e-mail address" onblur="if(this.value == '') { this.value ='Enter your e-mail address'; }" onfocus="if(this.value =='Enter your e-mail address') { this.value = ''; }">
<input type="submit" value="Subscribe to our newsletter">
</form>
</div>
</div>
</div>
</div>
<!--// FooterNewsLatter \\-->
<!--// FooterWidgets \\-->
<div class="wm-footer-widget">
<div class="container">
<div class="row">
<aside class="widget widget_contact_info col-md-3">
<a href="index-2.html" class="wm-footer-logo"><img src="images/logo-1.png" alt=""></a>
<ul>
<li><i class="wm-color wmicon-pin"></i> 195 Cooks Mine Road Espanola, NM 87532</li>
<li><i class="wm-color wmicon-phone"></i> +1 505-753-5656 <br> +1 505-753-4437</li>
<li><i class="wm-color wmicon-letter"></i> <a href="mailto:name@email.com">info@university.com</a> <a href="mailto:name@email.com">support@university.com</a></li>
</ul>
<div class="wm-footer-icons">
<a href="#" class="wmicon-social5"></a>
<a href="#" class="wmicon-social4"></a>
<a href="#" class="wmicon-social3"></a>
<a href="#" class="wmicon-vimeo"></a>
</div>
</aside>
<aside class="widget widget_archive col-md-2">
<div class="wm-footer-widget-title"> <h5>Quick Links</h5> </div>
<ul>
<li><a href="#">Our Latest Events</a></li>
<li><a href="#">Our Courses</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">404 Page</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">All Instructors</a></li>
</ul>
</aside>
<aside class="widget widget_twitter col-md-4">
<div class="wm-footer-widget-title"> <h5><i class="wmicon-social2"></i> @enrollcampus</h5> </div>
<ul>
<li>
<p>Check Youniverse - Multipurpose PSD Template @ThemeForest: <a href="#">pic.twitter.com/xcVlqJySjq</a></p>
<time datetime="2008-02-14 20:00" class="wm-color">2 hrs ago</time>
</li>
<li>
<p>Check out my New PSD: FashionPlus - Fashion eCommerce: <a href="#">pic.twitter.com/xc445Ghyt</a></p>
<time datetime="2008-02-14 20:00" class="wm-color">4 hrs ago</time>
</li>
<li>
<p>MedicAid - Medical Template @ThemeForest: <a href="#">pic.twitter.com/xcVlq542wfER</a></p>
<time datetime="2008-02-14 20:00" class="wm-color">1 day ago</time>
</li>
</ul>
</aside>
<aside class="widget widget_gallery col-md-3">
<div class="wm-footer-widget-title"> <h5>Our Instructors</h5> </div>
<ul class="gallery">
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-1.jpg"><img src="extra-images/widget-gallery-1.jpg" alt=""></a></li>
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-2.jpg"><img src="extra-images/widget-gallery-2.jpg" alt=""></a></li>
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-3.jpg"><img src="extra-images/widget-gallery-3.jpg" alt=""></a></li>
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-4.jpg"><img src="extra-images/widget-gallery-4.jpg" alt=""></a></li>
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-5.jpg"><img src="extra-images/widget-gallery-5.jpg" alt=""></a></li>
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-6.jpg"><img src="extra-images/widget-gallery-6.jpg" alt=""></a></li>
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-7.jpg"><img src="extra-images/widget-gallery-7.jpg" alt=""></a></li>
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-8.jpg"><img src="extra-images/widget-gallery-8.jpg" alt=""></a></li>
<li><a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/widget-galleryfull-9.jpg"><img src="extra-images/widget-gallery-9.jpg" alt=""></a></li>
</ul>
</aside>
</div>
</div>
</div>
<!--// FooterWidgets \\-->
<!--// FooterCopyRight \\-->
<div class="wm-copyright">
<div class="container">
<div class="row">
<div class="col-md-6"> <span><i class="wmicon-nature"></i> Barcelona, Spain 2°F / -17°C</span> </div>
<div class="col-md-6"> <p><a target="_blank" href="https://www.templateshub.net">Templates Hub</a></p> </div>
</div>
</div>
</div>
<!--// FooterCopyRight \\-->
</footer>
<!--// Footer \\-->
<div class="clearfix"></div>
</div>
<!--// Main Wrapper \\-->
<!-- ModalLogin Box -->
<div class="modal fade" id="ModalLogin" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="wm-modallogin-form wm-login-popup">
<span class="wm-color">Login to Your Account</span>
<form>
<ul>
<li> <input type="text" value="Your Username" onblur="if(this.value == '') { this.value ='Your Username'; }" onfocus="if(this.value =='Your Username') { this.value = ''; }"> </li>
<li> <input type="password" value="password" onblur="if(this.value == '') { this.value ='password'; }" onfocus="if(this.value =='password') { this.value = ''; }"> </li>
<li> <a href="#" class="wm-forgot-btn">Forgot Password?</a> </li>
<li> <input type="submit" value="Sign In"> </li>
</ul>
</form>
<span class="wm-color">or try our socials</span>
<ul class="wm-login-social-media">
<li><a href="#"><i class="wmicon-social5"></i> Facebook</a></li>
<li class="wm-twitter-color"><a href="#"><i class="wmicon-social4"></i> twitter</a></li>
<li class="wm-googleplus-color"><a href="#"><i class="fa fa-google-plus-square"></i> Google+</a></li>
</ul>
<p>Not a member yet? <a href="#">Sign-up Now!</a></p>
</div>
<div class="wm-modallogin-form wm-register-popup">
<span class="wm-color">create Your Account today</span>
<form>
<ul>
<li> <input type="text" value="Your Username" onblur="if(this.value == '') { this.value ='Your Username'; }" onfocus="if(this.value =='Your Username') { this.value = ''; }"> </li>
<li> <input type="text" value="Your E-mail" onblur="if(this.value == '') { this.value ='Your E-mail'; }" onfocus="if(this.value =='Your E-mail') { this.value = ''; }"> </li>
<li> <input type="password" value="password" onblur="if(this.value == '') { this.value ='password'; }" onfocus="if(this.value =='password') { this.value = ''; }"> </li>
<li> <input type="text" value="Confirm Password" onblur="if(this.value == '') { this.value ='Confirm Password'; }" onfocus="if(this.value =='Confirm Password') { this.value = ''; }"> </li>
<li> <input type="submit" value="Create Account"> </li>
</ul>
</form>
<span class="wm-color">or signup with your socials:</span>
<ul class="wm-login-social-media">
<li><a href="#"><i class="wmicon-social5"></i> Facebook</a></li>
<li class="wm-twitter-color"><a href="#"><i class="wmicon-social4"></i> twitter</a></li>
<li class="wm-googleplus-color"><a href="#"><i class="fa fa-google-plus-square"></i> Google+</a></li>
</ul>
<p>Already a member? <a href="#">Sign-in Here!</a></p>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- ModalLogin Box -->
<!-- ModalSearch Box -->
<div class="modal fade" id="ModalSearch" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="wm-modallogin-form">
<span class="wm-color">Search Your KeyWord</span>
<form>
<ul>
<li> <input type="text" value="Keywords..." onblur="if(this.value == '') { this.value ='Keywords...'; }" onfocus="if(this.value =='Keywords...') { this.value = ''; }"> </li>
<li> <input type="submit" value="Search"> </li>
</ul>
</form>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- ModalSearch Box -->
<!-- jQuery (necessary for JavaScript plugins) -->
<script type="text/javascript" src="script/jquery.js"></script>
<script type="text/javascript" src="script/modernizr.js"></script>
<script type="text/javascript" src="script/bootstrap.min.js"></script>
<script type="text/javascript" src="script/jquery.prettyphoto.js"></script>
<script type="text/javascript" src="script/jquery.countdown.min.js"></script>
<script type="text/javascript" src="script/fitvideo.js"></script>
<script type="text/javascript" src="script/skills.js"></script>
<script type="text/javascript" src="script/slick.slider.min.js"></script>
<script type="text/javascript" src="script/waypoints-min.js"></script>
<script type="text/javascript" src="build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="script/isotope.min.js"></script>
<script type="text/javascript" src="script/jquery.nicescroll.min.js"></script>