-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1516 lines (1121 loc) · 42.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>VCUarts - Presentation</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
<!-- styles to be imported when I move this to the version at VCU -->
<style>
.vcuartslogo{
position: fixed;
bottom: 20px;
left: 20px;
z-index: 1000000;
}
.reveal ul.images-inline{
list-style: none;
margin-left: 0;
}
.images-inline li{
float: left;
margin-right: 20px;
width: 200px;
text-align: center;
}
.images-inline li:last-child{
margin-right: 0;
}
.reveal img.no-border{
border: none;
/*border: 4px solid #eeeeee;*/
box-shadow: none;
background: transparent;
}
/*.image-inline li small{
display: block;
}*/
span.big-callout{
color: #ee3041;
font-size: 2em;
}
span.red {
color: #ee3041;
}
span.inline-callout{
color: #00ABC4;
}
.reveal .vcuarts .vcu{
text-transform: uppercase;
}
.reveal .vcuarts .arts{
text-transform: lowercase;
}
.reveal .lowercase{
text-transform: lowercase;
}
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p {
text-shadow: 0px 0px 6px rgba(0, 0, 0, 1.0);
}
.reveal h1.no-text, .reveal h2.no-text, .reveal h3.no-text, .reveal h4.no-text, .reveal h5.no-text, .reveal h6.no-text, .reveal p.no-text {
text-shadow: none;
}
.images-inline .name{
margin-bottom: 1em;
}
.reveal {
font-family: 'Conv_Archer-Medium-Pro';
}
.reveal .slides>section>section{
background-color:rgba(0,0,0,0.5);
border-radius: 10px;
padding: 20px 30px 10px 30px;
box-shadow: 0px 0px 20px rgba(0,0,0,.7);
border: 1px solid rgba(0,0,0,.1);
}
.reveal .slides>section>section.nbg{
background-color: transparent;
border-radius: 0;
padding: 20px 30px 10px 30px;
box-shadow: none;
border: none;
}
.reveal .col-onehalf{
width: 45%;
float: left;
padding: 2%;
}
.col-onehalf.last{
float: right;
}
.reveal .col-onethird{
width: 29%;
float: left;
padding: 2%;
}
.col-onethird.last{
float: right;
}
.reveal .majors-list small{
font-size: .8em;
}
.reveal p{
margin: 10px 0;
}
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6{
margin: 20px 0;
}
.reveal h2{
letter-spacing: .06em;
font-size: 2.75em;
line-height: 1.05em;
}
.reveal table th,
.reveal table td{
padding: 5px;
}
table .even{
background-color:rgba(0,0,0,0.5);
}
table .row-1{
background-color:rgba(0,0,0,0.5);
}
.reveal .biglist small{
line-height: 1.8em;
}
.reveal .slides>section>section.biglist{
background-color:rgba(0,0,0,0.75);
border-radius: 10px;
padding: 20px 30px 10px 30px;
box-shadow: 0px 0px 20px rgba(0,0,0,.7);
border: 1px solid rgba(0,0,0,.1);
}
/*quicklinks*/
.quicklinks{
position: fixed;
top: 10px;
left: 10px;
z-index: 100;
}
.quicklinks img{
cursor: pointer;
}
.quicklinks ul{
display: none;
list-style-type: none;
font-size: .6em;
line-height: 1.2em;
background-color:rgba(0,0,0,0.5);
border-radius: 10px;
padding: 20px 30px 20px 30px;
box-shadow: 0px 0px 20px rgba(0,0,0,.7);
border: 1px solid rgba(0,0,0,.1);
}
.quicklinks ul li{
margin: 0 0 0 0;
padding: 0 0 0 0;
}
@font-face {
font-family: 'Conv_Archer-Medium-Pro';
src: url('assets/fonts/Archer-Medium-Pro.eot');
src: local('☺'), url('assets/fonts/Archer-Medium-Pro.woff') format('woff'), url('assets/fonts/Archer-Medium-Pro.ttf') format('truetype'), url('assets/fonts/Archer-Medium-Pro.svg') format('svg');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<!--
------------------------------
INTRODUCTION
------------------------------
-->
<section data-background="assets/images/afo/afo.jpg">
<section>
<h3 style="color:#febe10">Hello, we're</h3>
<h1>Virginia Commonwealth University <br/>School of the Arts.</h1>
</section>
<section>
<img class='no-border' src="assets/images/vcuarts-logo.png"/>
<h3 class="fragment no-text-shadow" >Nice to meet you.</h3>
</section>
<section
data-background="assets/images/rva-night-skyline.jpg"
data-background-transition="fade">
<h2>Located in <br/>Richmond, Virginia</h2>
</section>
<!-- style="background: rgba(0,0,0,0.2)" -->
<section
data-background="assets/images/qatar2.jpg"
data-background-transition="fade">
<h2>Branch campus in Doha, Qatar</h2>
</section>
<section
data-background="assets/images/vcuarts-sticker-rome.jpg"
data-background-transition="fade">
<h2>Connections all over<br/> the world</h2>
</section>
</section>
<!--
------------------------------
International Students
------------------------------
-->
<section>
<section class="nbg" data-background="assets/images/misc/capsquilt.jpg">
<img class="no-border" src="assets/images/graphics/states-countries.png"/>
</section>
</section>
<!--
------------------------------
Rankings
------------------------------
-->
<section data-background="assets/images/richmond/dogsandducks.png">
<section>
<h2><span class="vcuarts"><span class="vcu">VCU</span><span class="arts">arts</span></span> is the <span class="big-callout">#1</span> ranked public art and design program in the country.</h2>
<p>So says <em>US News & World Report</em> (since 2003)</p>
</section>
<section>
<h2>and we're ranked #2 in the nation among both public and private schools</h2>
<table>
<tbody>
<tr class="row-2 even">
<td class="column-1">#1</td><td class="column-2">Yale University</td></td>
</tr>
<tr class="row-3 odd">
<td class="column-1">#2</td><td class="column-2"><span class="red">VCUarts</span></td></td>
</tr>
<tr class="row-4 even">
<td class="column-1">#2 (tie) </td><td class="column-2">University of California - Los Angeles </td></td>
</tr>
<tr class="row-5 odd">
<td class="column-1">#4</td><td class="column-2">Rhode Island School of Design</td></td>
</tr>
<tr class="row-6 even">
<td class="column-1">#4 (tie)</td><td class="column-2">School of the Art Institute of Chicago</td></td>
</tr>
</tbody>
</table>
</section>
<section data-background="assets/images/misc/dog.jpg">
<h2>But our ranking is <br/> just part of the story.</h2>
</section>
</section>
<!--
------------------------------
Value
------------------------------
-->
<section>
<section data-background="assets/images/money2.jpg">
<h2><span class="vcuarts"><span class="vcu">VCU</span><span class="arts">arts</span></span> is an amazing VALUE.</h2>
</section>
<section data-background="assets/images/money2.jpg">
<p>Our relatively <span class="inline-callout">low tuition</span></p>
<p class="fragment">and <span class="inline-callout">financial aid assistance</span></p>
<p class="fragment">combined with the <span class="inline-callout">quality</span> of a <span class="vcuarts"><span class="vcu">VCU</span><span class="arts">arts</span></span> education <br/> and the <span class="inline-callout">reputation</span> and <span class="inline-callout">ranking</span> of <span class="vcuarts"><span class="vcu">VCU</span><span class="arts">arts</span></span> </p>
<h2 class="fragment">=</h2>
</section>
<section class="nbg" data-background="assets/images/richmond/dunk.jpg">
<h2>awesome.</h2>
<p class="fragment"><span class="inline-callout">(value)</span></p>
</section>
</section>
<!--
------------------------------
Richmond
------------------------------
-->
<section>
<section data-background="assets/images/richmond/rva-night.jpg">
<h2>Richmond is an <br/>incredible city with a <br/>low cost-of-living.</h2>
</section>
<section data-background="assets/images/richmond/rva-night.jpg">
<h2>it is...</h2>
</section>
<section data-background="assets/images/fall.jpg">
<h2>Beautiful.</h2>
</section>
<section data-background="assets/images/pollak-roof.jpg">
<h2>Inspiring.</h2>
</section>
<section data-background="assets/images/vmfa_exterior.jpg">
<h2>Arts-centric.</h2>
</section>
<section data-background="assets/images/carytown-vintage.jpg">
<h2>There's Always something cool to do and see.</h2>
</section>
</section>
<!--
------------------------------
Richmond
------------------------------
-->
<section>
<section data-background="assets/images/misc/ica.jpg">
<h2>VCU Institute for Contemporary Art</h2>
<p></p>
</section>
</section>
<!--
------------------------------
Did You Know?
------------------------------
-->
<section>
<section data-background="assets/images/richmond/churchhill.jpg">
<h2>Richmond is...</h2>
</section>
<section data-background="assets/images/richmond/rivercityraft.com/rapids2.jpg">
<h2>Outdoor Magazine's <br/>#1 River City</h2>
</section>
<section data-background="assets/images/richmond/rva-tattoo.jpg">
<h2>the Third most tattooed <br/>city in the U.S.</h2>
</section>
<section data-background="assets/images/richmond/apples2.jpg">
<h2>One of 8 under the radar foodie cities in the world</h2>
<p>As ranked by U.S. News Travel</p>
</section>
<section data-background="assets/images/richmond/rvamoon.jpg">
<h2>One of 10 best cities for finding employment</h2>
<p>According to Forbes</p>
</section>
<section data-background="assets/images/richmond/vabeach.jpg">
<h2>Near everything you'd want</h2>
<img style="max-width: 600px;" src="assets/images/richmond/proximity2.png" />
</section>
<!-- MAYBE THIS SHOULD GO AT THE END. NEED TO GET TO MEAT SOONER? POTATOES LATER? -->
</section>
<!--
------------------------------
Back to VCU
------------------------------
-->
<section>
<!-- <section data-background="assets/images/glassworking_1.jpg"> -->
<section data-background="assets/images/richmond/engbldg.jpg">
<h2>VCU is a major public research institution</h2>
</section>
<section class="biglist" data-background="assets/images/misc/doors.jpg">
<small>Accounting | African American Studies | Anthropology | <span class="inline-callout">Art Education</span> | <span class="inline-callout">Art History</span> | Bioinformatics | Biology | Biomedical Engineering | Business | Chemical and Life Science Engineering | Chemistry | <span class="inline-callout">Cinema</span> | Clinical Laboratory Sciences | Clinical Radiation Sciences | <span class="inline-callout">Communication Arts</span> | Computer Engineering | Computer Science | <span class="inline-callout">Craft/Material Studies</span> | Criminal Justice | <span class="inline-callout">Dance and Choreography</span> | Dental Hygiene | Early and Elementary Education | Economics | Electrical Engineering | English | Environmental Studies | <span class="inline-callout">Fashion Design</span> | <span class="inline-callout">Fashion Merchandising</span> | Financial Technology | Foreign Language | Forensic Science | Gender, Sexuality and Women’s Studies | <span class="inline-callout">Graphic Design</span> | Health, Physical Education and Exercise Science | History | Homeland Security and Emergency Preparedness | Information Systems | Interdisciplinary Studies | <span class="inline-callout">Interior Design</span> | International Studies | <span class="inline-callout">Kinetic Imaging</span> | Marketing | Mass Communications | Mathematical Sciences | Mechanical Engineering | <span class="inline-callout">Music</span> | Nursing | <span class="inline-callout">Painting + Printmaking</span> | Philosophy | <span class="inline-callout">Photography + Film</span> | Physics | Political Science | Psychology | Real Estate | Religious Studies | Science | <span class="inline-callout">Sculpture + Extended Media</span> | Social Work | Sociology | <span class="inline-callout">Theatre</span> | Urban and Regional Studies</small>
</section>
<section class="nbg" data-background="assets/images/richmond/vcu-rams-crowd.jpg">
<img class="no-border" src="assets/images/graphics/vcu-pop.png" />
</section>
<section class="nbg" data-background="assets/images/npd.jpg">
<img class="no-border" src="assets/images/graphics/vcuarts-pop.png" />
</section>
<section class="nbg" data-background="assets/images/richmond/gdes-dept.jpg">
<img class="no-border" src="assets/images/graphics/vcuarts-dep.png" />
</section>
<section class="nbg" data-background="assets/images/richmond/vcuarts-class-2.jpg">
<img class="no-border" src="assets/images/graphics/vcuarts-class.png" />
</section>
<section class="nbg" data-background="assets/images/bigops.png">
<img class="no-border" src="assets/images/graphics/big-small.png" />
</section>
<!-- <section>
<h3>University Benefits</h3>
<video width="946" height="540" controls poster="assets/videos/posters/poster.png">
<source src="assets/videos/08_UniversityStudent.mp4" type="video/mp4">
</video>
</section> -->
</section>
<!--
------------------------------
Majors
------------------------------
-->
<section class="nbg" data-background="assets/images/misc/gradbanners.jpg">
<section>
<h2>Now let's talk <br/>about our majors</h2>
</section>
<section class="majors-list biglist">
<div class="col-onehalf">
<h4>BA Programs</h4>
<p><small><a href="#/19">Art History</a></small></p>
<p><small><a href="#/20">Cinema</a></small></p>
<p><small><a href="#/21">Fashion Merchandising</a></small></p>
<br/>
<h4>Performing Arts</h4>
<p><small><a href="#/22">Dance + Choreography / BFA</a></small></p>
<p><small><a href="#/23">Music / BA, BM</a></small></p>
<p><small><a href="#/24">Theatre / BFA, BA</a></small></p>
</div>
<div class="col-onehalf last">
<h4>Visual Arts & Design BFA Programs</h4>
<p><small><a href="#/9">Art Education</a></small></p>
<p><small><a href="#/10">Communication Arts</a></small></p>
<p><small><a href="#/11">Craft/Material Studies</a></small></p>
<p><small><a href="#/12">Fashion Design</a></small></p>
<p><small><a href="#/13">Graphic Design</a></small></p>
<p><small><a href="#/14">Interior Design</a></small></p>
<p><small><a href="#/15">Kinetic Imaging</a></small></p>
<p><small><a href="#/16">Painting + Printmaking</a></small></p>
<p><small><a href="#/17">Photography + Film</a></small></p>
<p><small><a href="#/18">Sculpture + Extended Media</a></small></p>
</div>
</section>
<section data-background="assets/images/afo/squirrell.jpg">
<h3>These majors start with AFO</h3>
<p><a href="#/10">Art Education</a></p>
<p><a href="#/13">Communication Arts</a></p>
<p><a href="#/14">Craft/Material Studies</a></p>
<p><a href="#/16">Fashion Design</a></p>
<p><a href="#/18">Graphic Design</a></p>
<p><a href="#/19">Interior Design</a></p>
<p><a href="#/20">Kinetic Imaging</a></p>
<p><a href="#/22">Painting + Printmaking</a></p>
<p><a href="#/23">Photography + Film</a></p>
<p><a href="#/24">Sculpture + Extended Media</a></p>
</section>
<section data-background="assets/images/afo/init.jpg">
<h2>What is AFO?</h2>
</section>
<section data-background="assets/images/afo/happybirthday.jpg">
<h2>Art Foundation</h2>
<p>A studio-based experience in the fundamental issues of art and design. It exposes students to a vast forum of ideas & concepts preparing them for a wide range of disciplines.</p>
</section>
<section data-background="assets/images/afo/drawing.jpg">
<h2>Drawing</h2>
</section>
<section data-background="assets/images/afo/surface3.jpg">
<h2>Surface</h2>
</section>
<section data-background="assets/images/afo/space2.jpg">
<h2>Space</h2>
</section>
<section data-background="assets/images/afo/horses-horses.jpg">
<h2>Time</h2>
</section>
<!-- <section>
<video width="946" height="540" controls poster="assets/videos/posters/poster.png">
<source src="assets/videos/01_AFO.mp4" type="video/mp4">
</video>
</section> -->
</section>
<!--
-----------------------
Art Education
http://esterknows.com/art-education
-----------------------
-->
<section>
<section data-background="assets/images/arted/yellow.jpg">
<h2>Art Education / BFA</h2>
</section>
<section data-background="assets/images/arted/stapler.jpg">
<div class="btm">
<p>Art Ed combines art and teaching.</p>
</div>
</section>
<section data-background="assets/images/arted/arted.jpg">
<p>Train to be an idea-based artist and learn to design instructional strategies.
Spend time student-teaching in local schools.</p>
</section>
<section data-background="assets/images/arted/pastels.jpg">
<p>Art Education grads become teachers, <br/>school administrators, artists…</p>
</section>
</section>
<!--
-----------------------
CommArts
-----------------------
-->
<section>
<section data-background="assets/images/commarts/bunnies.jpg">
<h2>Communication Arts / BFA</h2>
</section>
<section data-background="assets/images/commarts/spins.jpg">
<p>Illustration.</p>
</section>
<section data-background="assets/images/commarts/heart.jpg">
<p>Medical Illustration.</p>
</section>
<section data-background="assets/images/commarts/matrix.jpg">
<p>Electronic imaging for print, television, film and web.</p>
</section>
<section data-background="assets/images/commarts/crows.jpg">
<p>The study and exploration of the qualities, disciplines and technologies that enable us to create and communicate with insight, vision and voice.</p>
</section>
<section data-background="assets/images/commarts/gallery.jpg">
<p>Communication Arts grads become art directors, illustrators, animators, 3-D modelers, graphic novelists…</p>
</section>
</section>
<!--
-----------------------
Craft
-----------------------
-->
<section>
<section data-background="assets/images/craft/tractor.jpg">
<h2>Craft/Material Studies / BFA</h2>
</section>
<section data-background="assets/images/craft/metal1.jpg">
<p class="btm">Metal – make objects and jewelry with soldering, stone setting, hollow forming, and enameling techniques</p>
</section>
<section data-background="assets/images/craft/fiber-armor.jpg">
<p class="btm">Fiber – learn to weave, embroider, and knit, <br/>and silkscreen on cloth</p>
</section>
<section data-background="assets/images/craft/wood3.jpg">
<p>Wood – study carving, joinery and lathe work to <br/>make sculpture and furniture</p>
</section>
<section data-background="assets/images/craft/glass.jpg">
<p class="btm">Glass – explore glassblowing, slumping, <br/>lampworking, and casting</p>
</section>
<section data-background="assets/images/craft/clay2.jpg">
<p>Clay – learn hand building or wheel throwing pottery techniques</p>
</section>
<section data-background="assets/images/craft/wood-paneling.jpg">
<p class="btm">Fiber #1<br/>
Glass #1<br/>
Metal #5 <br/>
Clay #6</p>
<p><small>Among all public U.S. art & design programs. <br/><em>US News & World Report</em></small></p>
</section>
<section data-background="assets/images/craft/stickhouses.jpg">
<p>Craft grads become textile, furniture and jewelry designers, <br/>studio artists, craftspersons…</p>
</section>
</section>
<!--
-----------------------
Fashion
-----------------------
-->
<section>
<section data-background="assets/images/fashion/fashion.jpg">
<h2>Fashion Design / BFA</h2>
</section>
<section data-background="assets/images/fashion/fashion-sewing.jpg">
<p>Learn both the creative and professional processes for concept development, fashion illustration, patternmaking, draping and garment construction.</p>
</section>
<section data-background="assets/images/fashion-merchandising/glasses.jpg">
<p>Fashion Design grads become fashion designers, product developers, fashion historians, associate designers…</p>
</section>
</section>
<!--
-----------------------
GDES
-----------------------
-->
<section>
<section data-background="assets/images/gdes/clutter.jpg">
<h2>Graphic Design / BFA</h2>
</section>
<section data-background="assets/images/gdes/gdes2.jpg">
<p><span class="vcuarts"><span class="vcu">VCU</span><span class="arts">arts</span></span> Graphic Design is ranked #1
<br/>among all public U.S. art & design programs.
<br/>
<small>US News & World Report</small>
</p>
</section>
<section data-background="assets/images/gdes/hare.jpg">
<p>Graphic designers integrate form and information for the purpose of effective visual communication. Print. Web. Anyplace else where ideas are communicated.</p>
</section>
<section data-background="assets/images/gdes/bluetype.jpg">
<p>Graphic Design grads become creative directors, art directors, graphic designers, web designers…</p>
</section>
</section>
<!--
-----------------------
Interior Design
-----------------------
-->
<section>
<section data-background="assets/images/ides/perspective2.png">
<h2>Interior Design / BFA</h2>
</section>
<section data-background="assets/images/ides/wax.jpg">
<p>Problem solving for the near built environment. It’s not about merely making a room look good.</p>
</section>
<section data-background="assets/images/ides/rab.jpg">
<p>Interior Design grads become contract designers, hospitality designers, retail designers, residential designers, space planners…</p>
</section>
</section>
<!--
-----------------------
KI
-----------------------
-->
<section >
<section data-background="assets/images/ki/ki.jpg">
<h2>Kinetic Imaging / BFA</h2>
</section>
<section data-background="assets/images/ki/pink.jpg">
<p>For students with vivid imaginations and inexhaustible curiosity, attracted to video, sound or animation art.</p>
</section>
<!-- http://esterknows.com/kinetic-imaging -->
<section data-background="assets/images/ki/tvs.jpg">
<p>Kinetic Imaging grads become media artists, producers, motion graphic artists, animators, video editors, web designers, game artists, film makers, sound technicians…</p>
</section>
</section>
<!--
-----------------------
Painting + Printmaking
-----------------------
-->
<section>
<section data-background="assets/images/painting/painting.jpg">
<h2>Painting + Printmaking / BFA</h2>
</section>
<section data-background="assets/images/painting/bottles.jpg">
<p><span class="vcuarts"><span class="vcu">VCU</span><span class="arts">arts</span></span> Painting is ranked #2 among all public U.S. art programs. Printmaking is ranked #9. US News & World Report</p>
</section>
<section data-background="assets/images/painting/brushes.jpg">
<p class="btm">Practice and theory as a foundation for independent exploration and artistic development.</p>
</section>
<section data-background="assets/images/painting/light.jpg">
<p>Exceptional, sun-filled facilities and enhanced computer lab</p>
</section>
<!-- http://esterknows.com/painting-printmaking -->
<section data-background="assets/images/painting/diamond.jpg">
<p>Painting and Printmaking grads become artists, printmakers, painters, museum administrators, art critics…</p>
</section>
</section>
<!--
-----------------------
Photography + Film
-----------------------
-->
<section>
<section data-background="assets/images/photofilm/photofilm2.jpg">
<h2>Photography + Film / BFA</h2>
</section>
<section data-background="assets/images/photofilm/photofilm3.jpg">
<p><span class="vcuarts"><span class="vcu">VCU</span><span class="arts">arts</span></span> Photography is ranked #4 among all public U.S. art & design programs. US News & World Report</p>
</section>
<section data-background="assets/images/photofilm/truck.jpg">
<p>Students may focus on still photography, filmmaking, or both. </p>
</section>
<section data-background="assets/images/photofilm/subway.jpg">
<p>Study traditional and contemporary photographic and film media.</p>
</section>
<section data-background="assets/images/photofilm/happy2.jpg">
<p>Photography + Film grads become photographers, <br/>film editors, filmmakers…</p>
</section>
</section>
<!--
-----------------------
Sculpture + Extended Media
-----------------------
-->
<section>
<section data-background="assets/images/sculpture/sculpture.jpg">
<h2>Sculpture +<br/>Extended Media / BFA</h2>
</section>
<section data-background="assets/images/sculpture/spaceandlights.jpg">
<p><span class="vcuarts"><span class="vcu">VCU</span><span class="arts">arts</span></span> Sculpture is ranked #1 among all public and U.S. art & design programs. US News & World Report</p>
</section>
<section data-background="assets/images/sculpture/allstars.jpg">
<p>One of the largest and most widely recognized programs <br/>in the country.</p>
</section>
<section data-background="assets/images/sculpture/fire.jpg">
<p>Learn construction methods and techniques and how to communicate ideas through artworks.</p>
</section>
<section data-background="assets/images/sculpture/massage.jpg">
<p>"Extended Media" includes video, performance, robotic, <br/>sound, and more.</p>
</section>
<!-- http://esterknows.com/sculpture-extended-media -->
<section data-background="assets/images/sculpture/shoes2.jpg">
<p>Sculpture grads become art educators, sculptors, museum and gallery owners, designers…</p>
</section>
</section>
<!--
-----------------------
Art History
-----------------------
-->
<section>
<section data-background="assets/images/arthistory/peru.jpg">
<h2>Art History / BA</h2>
</section>
<section data-background="assets/images/arthistory/vmfa.jpg">
<p>Students study two- and three-dimensional works of art in a variety of media, including painting, photography, sculpture, architecture, film and performance art.</p>
</section>
<section data-background="assets/images/arthistory/camel.jpg">
<p>Internships at major museums, galleries, historic buildings and archeological sites.
Students have traveled to Peru, Scotland, Tibet, Ecuador, and Spain.</p>
</section>
<section data-background="assets/images/arthistory/vmfa2.jpg">
<p>Art historians examine the creation and meaning works of art as well as their social, political, and historical contexts.</p>
</section>
<section data-background="assets/images/arthistory/gloves.jpg">
<p>Art History grads become museum curators, conservationists, researchers, gallery administrators, restoration specialists, appraisers, art consultants…</p>
</section>
</section>
<!--
-----------------------
Cinema
-----------------------
-->
<section>
<section data-background="assets/images/cinema/camera.jpg">
<h2>Cinema / BA</h2>
</section>
<section data-background="assets/images/cinema/windshield.jpg">
<p>What’s the difference between a BA in Cinema and a BFA in Photography and Film?</p>
</section>
<section data-background="assets/images/cinema/kiss.jpg">
<p>Cinema offers a BA degree. Students learn to create narrative films and work in teams. Emphasis on writing, casting, directing, camera work and editing in the collaborative, industry <br/>model of production.</p>
<br/>
<p class="fragment">Photography and Film offers a BFA degree. Students work individually and in small groups to create artisanal narrative shorts, documentaries and single-channel experimental <br/>films and videos.</p>
</section>
<section data-background="assets/images/cinema/truck.jpg">
<p>Focus on narrative film and combine the use of <br/>new digital technologies</p>
</section>
<section data-background="assets/images/cinema/field.jpg">
<p>Cinema grads become film makers, directors, editors, producers, critics, sound designers, directors of photography, <br/>production designers…</p>
</section>
</section>
<!--
-----------------------
Fashion Merchandising