-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-2.html
1094 lines (1031 loc) · 70 KB
/
index-2.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">
<!-- index18:21 -->
<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>Education Home Page1</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 \\-->
<!--// Main Banner \\-->
<div class="wm-main-banner">
<div class="wm-banner-one">
<div class="wm-banner-one-for">
<div class="wm-banner-one-for-layer"> <img src="extra-images/banner-view1-1.jpg" alt=""> </div>
<div class="wm-banner-one-for-layer"> <img src="extra-images/banner-view1-2.jpg" alt=""> </div>
<div class="wm-banner-one-for-layer"> <img src="extra-images/banner-view1-3.jpg" alt=""> </div>
<div class="wm-banner-one-for-layer"> <img src="extra-images/banner-view1-1.jpg" alt=""> </div>
</div>
<div class="wm-banner-one-nav">
<div class="wm-banner-one-nav-layer">
<h1>International Programmes</h1>
<p>The study programmes of the Enroll Campus University are open to people from all nationalities.</p>
<a href="#" class="wm-banner-btn">learn more</a>
</div>
<div class="wm-banner-one-nav-layer">
<h1>UA Degree Programmes</h1>
<p>We offer companies the opportunity to access the technology and knowledge developed at the Enroll Campus University.</p>
<a href="#" class="wm-banner-btn">know more</a>
</div>
<div class="wm-banner-one-nav-layer banner-bgcolor">
<h1>Research & Business</h1>
<p>The scientific community nominates CRISPR System, based on research developed at the UA.</p>
<a href="#" class="wm-banner-btn">learn more</a>
</div>
<div class="wm-banner-one-nav-layer">
<h1>International Programmes</h1>
<p>The study programmes of the Enroll Campus University are open to people from all nationalities.</p>
<a href="#" class="wm-banner-btn">learn more</a>
</div>
</div>
</div>
</div>
<!--// Main Banner \\-->
<!--// Main Content \\-->
<div class="wm-main-content">
<!--// Main Section \\-->
<div class="wm-main-section">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="wm-search-course">
<h3 class="wm-short-title wm-color">Find Your Course</h3>
<p>Fill in the form below to find your course:</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>
<div class="col-md-8">
<div class="wm-service wm-box-service">
<ul>
<li>
<div class="wm-box-service-wrap wm-bgcolor">
<i class="wmicon-suitcase"></i>
<h6><a href="#">Business</a></h6>
</div>
</li>
<li>
<div class="wm-box-service-wrap wm-bgcolor">
<i class="wmicon-money"></i>
<h6><a href="#">Economics</a></h6>
</div>
</li>
<li>
<div class="wm-box-service-wrap wm-bgcolor">
<i class="wmicon-school"></i>
<h6><a href="#">Math</a></h6>
</div>
</li>
<li>
<div class="wm-box-service-wrap wm-bgcolor">
<i class="wmicon-science"></i>
<h6><a href="#">Science</a></h6>
</div>
</li>
<li>
<div class="wm-box-service-wrap wm-bgcolor">
<i class="wmicon-computer"></i>
<h6><a href="#">Computing</a></h6>
</div>
</li>
<li>
<div class="wm-box-service-wrap wm-bgcolor">
<i class="wmicon-technology3"></i>
<h6><a href="#">Web Design</a></h6>
</div>
</li>
<li>
<div class="wm-box-service-wrap wm-bgcolor">
<i class="wmicon-web3"></i>
<h6><a href="#">Development</a></h6>
</div>
</li>
<li>
<div class="wm-box-service-wrap wm-bgcolor">
<i class="wmicon-shape"></i>
<h6><a href="#">Biology</a></h6>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-courses-popular-full">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-fancy-title"> <h2>Popular <span>Courses</span></h2> </div>
<div class="wm-courses wm-courses-popular">
<ul class="row">
<li class="col-md-3">
<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>
<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>
</ul>
</div>
</div>
</li>
<li class="col-md-3">
<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>
<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>
</ul>
</div>
</div>
</li>
<li class="col-md-3">
<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>
<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>
</ul>
</div>
</div>
</li>
<li class="col-md-3">
<div class="wm-courses-popular-wrap">
<figure> <a href="#"><img src="extra-images/papular-courses-4.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="#">Financial Information Systems</a></h6>
<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>
</ul>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-whychooseus-full">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="whychooseus-list">
<div class="wm-fancy-title"> <h2>Why <span>Choose Us</span></h2> </div>
<ul class="row">
<li class="col-md-4">
<span>209</span>
<h6>of our trainees have got a prestigious job</h6>
</li>
<li class="col-md-4">
<span>91%</span>
<h6>students have established successful business</h6>
</li>
<li class="col-md-4">
<span>35%</span>
<h6>have already earned their first million</h6>
</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="wm-questions-studying">
<img src="extra-images/ask-questoin-bg.png" alt="">
<h3 class="wm-color">Questions about studying with us?</h3>
<p>We have a team of student advisers & officers to answer any questions:</p>
<a class="wm-banner-btn" href="#">ask us now</a>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-learn-listing-full">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-fancy-title"> <h2>You Can <span>Learn</span></h2> </div>
<div class="wm-learn-listing">
<ul class="row">
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/learn-listing-1.png" alt=""></a>
<figcaption>
<h2>Research</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/learn-listing-2.png" alt=""></a>
<figcaption>
<h2>Academics</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/learn-listing-3.png" alt=""></a>
<figcaption>
<h2>Admissions</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
<li class="col-md-6">
<figure><a href="#"><img src="extra-images/learn-listing-4.png" alt=""></a>
<figcaption>
<h2>Student Life</h2>
<a href="#" class="wm-banner-btn">Read More</a>
</figcaption>
</figure>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-latestevents-full">
<div class="container">
<div class="row">
<div class="col-md-9 wm-top-spacer">
<h2 class="wm-simple-title">Our Latest Events</h2>
<div class="row">
<div class="col-md-4">
<div class="wm-event-latest-slider">
<div class="wm-event-latest-layer">
<h6 class="wm-color">Enjoy the best experience for you with the choice of our campus - a truly international university campus in Barcelona.</h6>
<a href="#" class="wm-banner-btn">about us</a>
</div>
<div class="wm-event-latest-layer">
<h6 class="wm-color">Enjoy the best experience for you with the choice of our campus - a truly international university campus in Barcelona.</h6>
<a href="#" class="wm-banner-btn">about us</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="wm-event wm-latest-event">
<ul class="row">
<li class="col-md-12">
<figure><a href="#"><img src="extra-images/latest-event-1.png" alt=""></a></figure>
<div class="wm-latest-event-text">
<h6><a href="#" class="wm-color">Out of This World: The Family Fun Day</a></h6>
<time datetime="2008-02-14 20:00">21/04/2016</time>
<p>Join us for outer-space themed games, prizes, science & talks about careers in the UK.</p>
<a href="#" class="wm-banner-btn">check event</a>
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="wm-event wm-latest-event">
<ul class="row">
<li class="col-md-12">
<figure><a href="#"><img src="extra-images/latest-event-2.png" alt=""></a></figure>
<div class="wm-latest-event-text">
<h6><a href="#" class="wm-color">Shakespeare at Balliol in those five acts</a></h6>
<time datetime="2008-02-14 20:00">19/04/2016</time>
<p>A.C. Bradley and J.C. Maxwell get down to serious criticism; another Balliol writer launches the.</p>
<a href="#" class="wm-banner-btn">check event</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="wm-counter wm-counter-simple">
<ul class="row">
<li class="col-md-12">
<span class="word-count">5</span>
<h6>th best University in Europe (Youth Inc. 2015 ranking)</h6>
</li>
<li class="col-md-12">
<span class="word-count">68</span>
<h6>% International students especially from Asia, Africa & Europe</h6>
</li>
<li class="col-md-12">
<span class="word-count">91</span>
<h6>Student Nationalities</h6>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-testimonial-full">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-fancy-title"> <h2>What <span>Clients Say</span></h2> <p>Don't take our word for it, see what our awesome clients say.</p> </div>
<div class="wm-testimonial-slider">
<div class="wm-testimonial-slider-wrap">
<p>I chose them because it gave me flexibility. I was working full-time at the same time I was studying, so the OU gave me that flexibility. Also my Dad, I’m Danish of origin.</p>
<figure>
<a href="#" class="wm-testimonial-thumb"><img src="extra-images/testimonial-thumb-1.png" alt=""></a>
<figcaption> <h5><a href="#">Priya E. Abraham</a></h5> <span>Paris, France</span> </figcaption>
</figure>
</div>
<div class="wm-testimonial-slider-wrap">
<p>After completing the MBA study, I had the opportunity to join one of the leading business schools in the UK in the role of faculty member and senior consultant. I suppose without the MBA it would have been difficult to make that career step. The biggest challenge in studying with them.</p>
<figure>
<a href="#" class="wm-testimonial-thumb"><img src="extra-images/testimonial-thumb-2.png" alt=""></a>
<figcaption> <h5><a href="#">Priya E. Abraham</a></h5> <span>Paris, France</span> </figcaption>
</figure>
</div>
<div class="wm-testimonial-slider-wrap">
<p>I chose them because it gave me flexibility. I was working full-time at the same time I was studying, so the OU gave me that flexibility. Also my Dad, I’m Danish of origin.</p>
<figure>
<a href="#" class="wm-testimonial-thumb"><img src="extra-images/testimonial-thumb-1.png" alt=""></a>
<figcaption> <h5><a href="#">Priya E. Abraham</a></h5> <span>Paris, France</span> </figcaption>
</figure>
</div>
<div class="wm-testimonial-slider-wrap">
<p>After completing the MBA study, I had the opportunity to join one of the leading business schools in the UK in the role of faculty member and senior consultant. I suppose without the MBA it would have been difficult to make that career step. The biggest challenge in studying with them.</p>
<figure>
<a href="#" class="wm-testimonial-thumb"><img src="extra-images/testimonial-thumb-2.png" alt=""></a>
<figcaption> <h5><a href="#">Priya E. Abraham</a></h5> <span>Paris, France</span> </figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-ourhistory-full">
<span class="wm-light-transparent"></span>
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="wm-history-list">
<h2>Our History</h2>
<ul>
<li>
<time datetime="2008-02-14 20:00">2016</time>
<span>Released the Arctic Collection the Perennial Collection of handknotted luxury area rugs.</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2015</time>
<span>Installed our first custom floorcovering for a museum at the Aga Khan Museum in Toronto</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2014</time>
<span>Designed our first wallcovering for all these healthcare sector at the Toronto Centre.</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2013</time>
<span>Celebrated 25 years in business with “The Art Day Project” – a partnership.</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2016</time>
<span>Released the Arctic Collection the Perennial Collection of handknotted luxury area rugs.</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2015</time>
<span>Installed our first custom floorcovering for a museum at the Aga Khan Museum in Toronto</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2014</time>
<span>Designed our first wallcovering for all these healthcare sector at the Toronto Centre.</span>
</li>
<li>
<time datetime="2008-02-14 20:00">2013</time>
<span>Celebrated 25 years in business with “The Art Day Project” – a partnership.</span>
</li>
</ul>
</div>
</div>
<div class="col-md-7">
<div class="wm-subscribe-form">
<h2>Still not convinced? We can help you!</h2>
<p>Fill out the form below and we will contact you.</p>
<form>
<input type="text" value="Name:" onblur="if(this.value == '') { this.value ='Name:'; }" onfocus="if(this.value =='Name:') { this.value = ''; }">
<input type="email" value="E-mail:" onblur="if(this.value == '') { this.value ='E-mail:'; }" onfocus="if(this.value =='E-mail:') { this.value = ''; }">
<input type="submit" value="Get Advice">
</form>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-news-grid-full">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-fancy-title"> <h2>Blog <span>News</span></h2> <p>We bring you all the useful information of the University's Community</p> </div>
<div class="wm-news wm-news-grid">
<ul class="row">
<li class="col-md-4">
<figure>
<a href="#"><img src="extra-images/news-grid-1.png" alt=""></a>
<figcaption class="wm-bgcolor">
<img src="extra-images/news-grid-thumb-1.png" alt="">
<h6>Posted by: <a href="#">Sam K. Harrington</a></h6>
</figcaption>
</figure>
<div class="wm-newsgrid-text">
<ul class="wm-post-options">
<li>7/4/2016</li>
<li><a href="#"><i class="fa fa-comments-o"></i> 12 comments</a></li>
<li><a href="#"><i class="wmicon-folder2"></i> admission</a></li>
</ul>
<h5><a href="#" class="wm-color">Seven UK business schools make the Top 10</a></h5>
<p>The largest-ever QS Distance Online MBA Rankings have been released by higher and business education analysts QS.</p>
<a class="wm-banner-btn" href="#">read article</a>
</div>
</li>
<li class="col-md-4">
<figure>
<a href="#"><img src="extra-images/news-grid-2.png" alt=""></a>
<figcaption class="wm-bgcolor">
<img src="extra-images/news-grid-thumb-2.png" alt="">
<h6>Posted by: <a href="#">Wanda R. Teixeira</a></h6>
</figcaption>
</figure>
<div class="wm-newsgrid-text">
<ul class="wm-post-options">
<li>6/4/2016</li>
<li><a href="#"><i class="fa fa-comments-o"></i> 21 comments</a></li>
<li><a href="#"><i class="wmicon-folder2"></i> business</a></li>
</ul>
<h5><a href="#" class="wm-color">The University Business School centre of excellence</a></h5>
<p>The University has announced the launch of its first free online course as part. These individuals or groups can more effectively.</p>
<a class="wm-banner-btn" href="#">read article</a>
</div>
</li>
<li class="col-md-4">
<figure>
<a href="#"><img src="extra-images/news-grid-3.png" alt=""></a>
<figcaption class="wm-bgcolor">
<img src="extra-images/news-grid-thumb-3.png" alt="">
<h6>Posted by: <a href="#">Marvin P. Sanchez</a></h6>
</figcaption>
</figure>
<div class="wm-newsgrid-text">
<ul class="wm-post-options">
<li>5/4/2016</li>
<li><a href="#"><i class="fa fa-comments-o"></i> 18 comments</a></li>
<li><a href="#"><i class="wmicon-folder2"></i> students</a></li>
</ul>
<h5><a href="#" class="wm-color">Our research could slash energy bills in Milton</a></h5>
<p>The University is developing the UK’s first community based website that will allow people in Milton Keynes.</p>
<a class="wm-banner-btn" href="#">read article</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-simple-section-title wm-partners-title"> <h2>University <span>Partners</span></h2> </div>
<div class="wm-partners-slider gallery">
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-1.png"> <img src="extra-images/university-partners-1.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-2.png"> <img src="extra-images/university-partners-2.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-3.png"> <img src="extra-images/university-partners-3.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-4.png"> <img src="extra-images/university-partners-4.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-5.png"> <img src="extra-images/university-partners-5.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-6.png"> <img src="extra-images/university-partners-6.png" alt=""> </a> </div>
<div class="wm-partners-layer"> <a title="" data-rel="prettyPhoto[gallery1]" href="extra-images/university-partners-1.png"> <img src="extra-images/university-partners-1.png" alt=""> </a> </div>
</div>
</div>
</div>
</div>
</div>
<!--// Main Section \\-->
<!--// Main Section \\-->
<div class="wm-main-section wm-contact-full">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="wm-contact-tab">
<!-- Nav tabs -->
<ul class="nav nav-tabs">
<li class="active"><a href="#home" aria-controls="home" data-toggle="tab">Contact Us</a></li>
<li><a href="#profile" aria-controls="profile" data-toggle="tab">Information Details</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane active" id="home">
<div class="row">
<div class="col-md-4"> <div class="wm-map"> <div id="map"></div> </div> </div>
<div class="col-md-8">
<div class="wm-contact-form">
<span>Talk To Us Today</span>
<form>
<ul>
<li>
<i class="wmicon-black"></i>
<input type="text" value="Name" onblur="if(this.value == '') { this.value ='Name'; }" onfocus="if(this.value =='Name') { this.value = ''; }">
</li>
<li>
<i class="wmicon-symbol3"></i>
<input type="text" value="E-mail" onblur="if(this.value == '') { this.value ='E-mail'; }" onfocus="if(this.value =='E-mail') { this.value = ''; }">
</li>
<li>
<i class="wmicon-technology4"></i>
<input type="text" value="Phone" onblur="if(this.value == '') { this.value ='Phone'; }" onfocus="if(this.value =='Phone') { this.value = ''; }">
</li>
<li>
<i class="wmicon-web2"></i>
<textarea placeholder="Message"></textarea>
</li>
<li> <input type="submit" value="Send Message"> </li>
</ul>
</form>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="profile">
<span class="wm-contact-title">Contact Info</span>
<div class="wm-contact-service">
<ul class="row">
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-pin"></i></span>
<h5 class="wm-color">Address</h5>
<p>195 Cooks Mine Road Espanola, NM 87532</p>
</li>
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-phone"></i></span>
<h5 class="wm-color">Phone & Fax</h5>
<p>+1 505-753-5656 +1 505-753-4437</p>
</li>
<li class="col-md-4">
<span class="wm-service-icon"><i class="wmicon-letter"></i></span>
<h5 class="wm-color">E-mail</h5>
<p><a href="mailto:name@email.com">Info@university.com</a> <a href="mailto:name@email.com">support@university.com</a></p>
</li>
</ul>
</div>
<ul class="contact-social-icon">
<li><a href="#"><i class="wm-color wmicon-social5"></i> Facebook</a></li>
<li><a href="#"><i class="wm-color wmicon-social4"></i> Twitter</a></li>
<li><a href="#"><i class="wm-color wmicon-social3"></i> Linkedin</a></li>
<li><a href="#"><i class="wm-color wmicon-vimeo"></i> Vimeo</a></li>
</ul>
</div>
</div>
</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 \\-->