-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1403 lines (1371 loc) · 64.4 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>
<!-- saved from url=(0120)file:///C:/Users/henre/JSprojects/creative-old/Victoria's%20creative%20economy%20-%20data%20_%20Creative%20Victoria.html -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/assets/icons/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/assets/icons/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/assets/icons/favicons/favicon-16x16.png"
/>
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<!-- Metadata -->
<!-- Global schema //-->
<!-- General //-->
<meta name="keywords" content="data ; economy" />
<meta
name="description"
content="Delve into the latest employment figures across Victoria’s creative and cultural sector."
/>
<!-- DC Terms //-->
<meta
name="DCTERMS.description"
content="Delve into the latest employment figures across Victoria’s creative and cultural sector."
/>
<meta name="DCTERMS.subject" content="data ; economy" />
<meta
name="DCTERMS.title"
content="Victoria's creative economy - data | Creative Victoria"
/>
<meta name="DCTERMS.creator" content="Creative Victoria" />
<meta name="DCTERMS.created" content="2022-10-06" />
<meta name="DCTERMS.modified" content="2023-02-21" />
<meta
name="DCTERMS.identifier"
content="https://creative.vic.gov.au/resources/2021-22-victorian-creative-industry-employment"
/>
<meta name="DCTERMS.publisher" content="Creative Victoria" />
<meta name="DCTERMS.rightsHolder" content="State Government of Victoria" />
<meta name="global_TextDir" content="ltr" />
<meta name="DCTERMS.date" content="2022-10-06" />
<meta name="DCTERMS.issued" content="2022-11-16" />
<meta
name="DCTERMS.rights"
content="https://creative.vic.gov.au/copyright"
/>
<meta name="DCTERMS.language" content="en" />
<meta name="DCTERMS.type" content="text" />
<meta name="DCTERMS.coverage" content="Victoria" />
<!-- Social //-->
<meta property="og:site_name" content="Creative Victoria" />
<meta
property="og:title"
content="Victoria's creative economy - data"
/>
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://creative.vic.gov.au/resources/2021-22-victorian-creative-industry-employment"
/>
<meta
property="og:description"
content="Delve into the latest employment figures across Victoria’s creative and cultural sector."
/>
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:site" content="" />
<!-- Resource //-->
<!-- Top Level //-->
<!-- Information Architecture //-->
<meta name="ia.section" content="Page" />
<meta name="ia.parent" content="Resources" />
<!-- Page Name and Site Name -->
<title>Victoria's creative economy - data | Creative Victoria</title>
<script
type="text/javascript"
async=""
src="./index_files/analytics.js.download"
></script>
<script type="text/javascript" async="" src="./index_files/js"></script>
<script type="text/javascript">
window.cv = {};
</script>
<!-- SSJS Scripts -->
<!--<base href="https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/">-->
<!--<base href=".">-->
<base href="." />
<!-- React entry point -->
<!-- globals_asset_contents_raw:2069903:dist/index.html (START) -->
<script
type="module"
crossorigin=""
src="./index_files/main.05e543e0.js.download"
></script>
<link rel="stylesheet" href="./index_files/main-16b97b84.css" />
<!-- globals_asset_contents_raw:2069903:dist/index.html (END) -->
<script type="text/javascript">
var _monsido = _monsido || [];
_monsido.push(["_setDomainToken", "vJCLFIUGblHOyCgj0B4tSA"]);
_monsido.push(["_withStatistics", "true"]);
</script>
<script src="./index_files/monsido.js.download"></script>
<!-- Google tag (gtag.js) -->
<script async="" src="./index_files/js(1)"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-EZTNDY4PDZ");
gtag("config", "UA-5093404-1");
</script>
<!-- Alert Banner JS -->
<script src="./index_files/alert-banner.js.download" defer=""></script>
<link
rel="modulepreload"
as="script"
crossorigin=""
href="https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/assets/index.8083e3ad.js"
/>
<link rel="stylesheet" href="./index_files/index-4004da81.css" />
<link
rel="modulepreload"
as="script"
crossorigin=""
href="https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/assets/index.e0a2080e.js"
/>
<link
rel="modulepreload"
as="script"
crossorigin=""
href="https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/assets/Banner.471719f6.js"
/>
<link rel="stylesheet" href="./index_files/Banner-578b3fbf.css" />
<link
rel="modulepreload"
as="script"
crossorigin=""
href="https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/assets/ArrowLink.503b90bd.js"
/>
<style data-styled="" data-styled-version="4.4.1"></style>
</head>
<body class="theme-resources layout-content-resource tabs-enabled__true">
<script>
cv.headerdata = {
topnav: {
items: [
{
id: "2070609",
url: "https://creative.vic.gov.au/funding-opportunities",
label: "Funding opportunities",
image:
"https://creative.vic.gov.au/__data/assets/image/0016/2111551/77adb62934eedcb36dace7b81bb4eeef193f745d.jpg",
items: [
{
id: "2095315",
url: "https://creative.vic.gov.au/funding-opportunities/find-a-funding-opportunity",
label: "Find a funding opportunity",
image:
"https://creative.vic.gov.au/__data/assets/image/0010/2109871/varieties/small.jpg",
},
{
id: "2105284",
url: "https://creative.vic.gov.au/funding-opportunities/funding-calendar",
label: "Funding calendar",
image: "",
},
{
id: "2105527",
url: "https://creative.vic.gov.au/funding-opportunities/applicants",
label: "Information for applicants",
image:
"https://creative.vic.gov.au/__data/assets/image/0006/2110110/varieties/small.jpg",
items: [
{
id: "2105741",
url: "https://creative.vic.gov.au/funding-opportunities/applicants/applying-and-conditions",
label: "Applying and conditions",
},
{
id: "2105745",
url: "https://creative.vic.gov.au/funding-opportunities/applicants/eligibility",
label: "Eligibility for grants",
},
{
id: "2105761",
url: "https://creative.vic.gov.au/funding-opportunities/applicants/tax-information",
label: "Tax information",
},
{
id: "2105749",
url: "https://creative.vic.gov.au/funding-opportunities/applicants/auspiced-applications",
label: "Auspiced applications",
},
{
id: "2105030",
url: "https://creative.vic.gov.au/funding-opportunities/applicants/using-the-grants-portal",
label: "Using the grants portal",
},
{
id: "2105757",
url: "https://creative.vic.gov.au/funding-opportunities/applicants/complaints",
label: "Complaints",
},
{
id: "2105753",
url: "https://creative.vic.gov.au/funding-opportunities/applicants/privacy,-foi-and-copyright",
label: "Privacy, Freedom of Information and Copyright",
},
{
id: "2106572",
url: "https://creative.vic.gov.au/funding-opportunities/applicants/glossary",
label: "Glossary",
},
],
},
{
id: "2105737",
url: "https://creative.vic.gov.au/funding-opportunities/recipients",
label: "Information for current recipients",
image:
"https://creative.vic.gov.au/__data/assets/image/0007/2110102/varieties/small.jpg",
items: [
{
id: "2105765",
url: "https://creative.vic.gov.au/funding-opportunities/recipients/acquittals",
label: "Acquittals",
items: [
{
id: "2106869",
url: "https://creative.vic.gov.au/funding-opportunities/recipients/acquittals/acquittals",
label: "Acquittals Assets",
},
],
},
{
id: "2105769",
url: "https://creative.vic.gov.au/funding-opportunities/recipients/variations-to-funded-activities",
label: "Variations to funded activities",
},
{
id: "2105773",
url: "https://creative.vic.gov.au/funding-opportunities/recipients/victoria-common-funding-agreement",
label: "Victoria Common Funding Agreement",
},
],
},
{
id: "2112178",
url: "https://creative.vic.gov.au/funding-opportunities/advisory-panel",
label: "Advisory panels",
image: "",
},
],
},
{
id: "2070618",
url: "https://creative.vic.gov.au/first-peoples",
label: "First Peoples",
image:
"https://creative.vic.gov.au/__data/assets/image/0003/2111556/CoconutWoman_Teaser_JKP-4-copy.jpg",
items: [
{
id: "2100148",
url: "https://creative.vic.gov.au/first-peoples/first-peoples-first",
label: "First Peoples first",
image: "",
},
{
id: "2105462",
url: "https://creative.vic.gov.au/first-peoples/first-peoples-directions-circle",
label: "First Peoples Directions Circle",
image: "",
},
{
id: "2123843",
url: "https://creative.vic.gov.au/first-peoples/dedicated-first-peoples-funding",
label: "Dedicated First Peoples funding",
image: "",
},
{
id: "2149900",
url: "https://creative.vic.gov.au/first-peoples/rfq-redeveloped-sturt-st-contemporary-arts-precinct-artwork-2023",
label:
"Redeveloped Sturt St Contemporary Arts Precinct Artwork - 2023",
image: "",
},
],
},
{
id: "2070613",
url: "https://creative.vic.gov.au/resources",
label: "Resources",
image:
"https://creative.vic.gov.au/__data/assets/image/0019/2110753/Take-Back-copy.jpg",
items: [
{
id: "2105586",
url: "https://creative.vic.gov.au/resources/logos-and-acknowledgements",
label: "Logos and acknowledgements",
image:
"https://creative.vic.gov.au/__data/assets/image/0007/2110759/varieties/small.png",
items: [
{
id: "2105608",
url: "https://creative.vic.gov.au/resources/logos-and-acknowledgements/creative-victoria-logos-and-guidelines",
label: "Creative Victoria logos",
},
{
id: "2105600",
url: "https://creative.vic.gov.au/resources/logos-and-acknowledgements/victorian-state-government-logo",
label: "Victorian Government logos",
},
{
id: "2105604",
url: "https://creative.vic.gov.au/resources/logos-and-acknowledgements/on-the-road-again-logos",
label: "On the Road Again logos and guidelines",
},
{
id: "2105596",
url: "https://creative.vic.gov.au/resources/logos-and-acknowledgements/unesco-melbourne-city-of-literature",
label: "UNESCO Melbourne City of Literature logos",
},
],
},
{
id: "2109059",
url: "https://creative.vic.gov.au/resources/creative-exchange",
label: "Creative Exchange",
image:
"https://creative.vic.gov.au/__data/assets/image/0019/2111590/varieties/small.jpeg",
items: [
{
id: "2110391",
url: "https://creative.vic.gov.au/resources/creative-exchange/artists-essential-toolkit",
label: "Artists Essential Toolkit",
},
],
},
{
id: "2104715",
url: "https://creative.vic.gov.au/resources/great-partnerships",
label: "Great Partnerships",
image:
"https://creative.vic.gov.au/__data/assets/image/0006/2105556/varieties/small.jpg",
items: [
{
id: "2129806",
url: "https://creative.vic.gov.au/resources/great-partnerships/about-great-partnerships",
label: "About Great Partnerships",
},
{
id: "2104661",
url: "https://creative.vic.gov.au/resources/great-partnerships/planning",
label: "Great Partnerships planning",
},
{
id: "2105252",
url: "https://creative.vic.gov.au/resources/great-partnerships/resources",
label: "Great Partnerships resources",
},
{
id: "2105295",
url: "https://creative.vic.gov.au/resources/great-partnerships/creative-learning-partnerships-induction",
label: "Creative Learning Partnerships - Induction",
},
],
},
{
id: "2105561",
url: "https://creative.vic.gov.au/resources/audience-research-toolkit",
label: "Audience Research Toolkit",
image:
"https://creative.vic.gov.au/__data/assets/image/0005/2108696/varieties/small.png",
},
{
id: "2105788",
url: "https://creative.vic.gov.au/resources/audience-outlook-monitor",
label: "Audience Outlook Monitor",
image:
"https://creative.vic.gov.au/__data/assets/image/0018/2123424/varieties/small.jpg",
},
{
id: "2105777",
url: "https://creative.vic.gov.au/resources/audience-participation-survey",
label: "Audience Participation Survey",
image: "",
},
{
id: "2108205",
url: "https://creative.vic.gov.au/resources/2021-22-victorian-creative-industry-employment",
label: "Victoria's creative economy - data",
image: "",
},
],
},
{
id: "2070622",
url: "https://creative.vic.gov.au/about",
label: "About",
image:
"https://creative.vic.gov.au/__data/assets/image/0004/2111566/Artists-lane-copy.jpg",
items: [
{
id: "2104351",
url: "https://creative.vic.gov.au/about/about-creative-victoria",
label: "About Creative Victoria",
image:
"https://creative.vic.gov.au/__data/assets/image/0004/2112079/varieties/small.jpg",
items: [
{
id: "2095342",
url: "https://creative.vic.gov.au/about/about-creative-victoria/who-we-are",
label: "Who we are",
items: [
{
id: "2124752",
url: "https://creative.vic.gov.au/about/about-creative-victoria/who-we-are/screen-and-design-initiatives",
label: "Screen and design initiatives",
},
{
id: "2099647",
url: "https://creative.vic.gov.au/about/about-creative-victoria/who-we-are/cultural-infrastructure-projects",
label: "Cultural infrastructure projects",
},
],
},
{
id: "2099643",
url: "https://creative.vic.gov.au/about/about-creative-victoria/creative-victoria-act-2017",
label: "Creative Victoria Act 2017",
},
],
},
{
id: "2099661",
url: "https://creative.vic.gov.au/about/our-strategy",
label: "Our strategy",
image: "",
},
{
id: "2099651",
url: "https://creative.vic.gov.au/about/our-agencies",
label: "Our agencies",
image:
"https://creative.vic.gov.au/__data/assets/image/0018/2120265/varieties/small.jpeg",
},
{
id: "2096259",
url: "https://creative.vic.gov.au/about/contact-us",
label: "Contact us",
image:
"https://creative.vic.gov.au/__data/assets/image/0004/2111566/varieties/small.jpg",
},
{
id: "2096794",
url: "https://creative.vic.gov.au/about/subscribe",
label: "Subscribe",
image:
"https://creative.vic.gov.au/__data/assets/image/0007/2110111/varieties/small.jpg",
items: [
{
id: "2096800",
url: "https://creative.vic.gov.au/about/subscribe/creative-victoria-enews",
label: "Creative Victoria eNews",
},
{
id: "2096806",
url: "https://creative.vic.gov.au/about/subscribe/fashion-enews",
label: "Fashion eNews",
},
{
id: "2096812",
url: "https://creative.vic.gov.au/about/subscribe/creative-exchange",
label: "Creative Exchange",
},
],
},
{
id: "2106357",
url: "https://creative.vic.gov.au/about/careers",
label: "Careers",
image:
"https://creative.vic.gov.au/__data/assets/image/0016/2120245/varieties/small.jpg",
},
],
},
{
id: "2070632",
url: "https://creative.vic.gov.au/news",
label: "News",
image: "",
},
],
},
logo: {
altText: "Logo",
imageRef:
"https://creative.vic.gov.au/__data/assets/git_bridge/0011/2069903/dist/assets/images/cv-logo.svg",
siteLink: "https://creative.vic.gov.au",
},
search: {
acURLprefix:
"https://djpr-search.squiz.cloud/s/suggest.json?collection=meta-web-dcv&show=5&sort=0&alpha=.5&fmt=json++&partial_query=",
searchURLprefix: "https://creative.vic.gov.au/search-results",
},
};
</script>
<div id="react-header" class="h-[84px] xl:h-28 container bg-black-1">
<div class="h-[84px] xl:h-28 relative">
<header class="text-white h-[84px] xl:h-28 z-50 fixed inset-0">
<div
class="container px-4 md:px-6 xl:px-10 bg-black-1 flex justify-between items-center h-full Vp--y"
>
<a href="https://creative.vic.gov.au/" class="shrink"
><img
src="./index_files/cv-logo.svg"
class="h-[56px] xl:h-auto"
alt="Logo"
/></a>
<div class="flex gap-4 xl:gap-6 grow justify-end items-center">
<div class="hidden xl:block">
<nav
class="pY3sn sm:max-w-sm xl:max-w-none bg-black-1 xl:static top-0 right-0 absolute h-screen xl:h-auto w-full overflow-hidden xl:overflow-visible"
>
<div
class="h-[84px] px-6 xl:px-0 xl:h-auto flex items-center justify-between xl:hidden"
>
<div></div>
<div class="content-center ml-2 xl:hidden h-10 w-10">
<button
title="Close menu"
class="w-full h-full"
id="nav-close-button"
>
<svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="IvcXQ"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10.1005 27.7781C9.51469 28.3639 9.51469 29.3137 10.1005 29.8995C10.6863 30.4852 11.636 30.4852 12.2218 29.8995L19.9999 22.1213L27.7782 29.8996C28.364 30.4854 29.3138 30.4854 29.8995 29.8996C30.4853 29.3138 30.4853 28.3641 29.8995 27.7783L22.1212 20L29.8995 12.2218C30.4852 11.636 30.4852 10.6863 29.8995 10.1005C29.3137 9.51469 28.3639 9.51469 27.7781 10.1005L19.9999 17.8787L12.2219 10.1006C11.6361 9.51485 10.6863 9.51485 10.1006 10.1006C9.51476 10.6864 9.51476 11.6362 10.1006 12.222L17.8786 20L10.1005 27.7781Z"
fill="black"
></path>
</svg>
</button>
</div>
</div>
<ul
class="flex flex-col xl:flex-row border-t border-black-2 xl:border-none mx-6 xl:mx-0 [&>li>*]:w-full"
>
<li>
<button
class="text-left outline-none focus-visible:outline-none py-3 border-b border-black-2 xl:border-0 xl:p-4 flex justify-between xl:justify-start items-center text-20/30 font-semibold hover:text-black-4"
type="button"
aria-expanded="false"
>
Funding opportunities<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="hidden xl:inline transition-transform false IvcXQ ml-2"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.62624 5.29289C3.01676 4.90237 3.64993 4.90237 4.04045 5.29289L8.00001 9.25245L11.9596 5.29289C12.3501 4.90237 12.9833 4.90237 13.3738 5.29289C13.7643 5.68342 13.7643 6.31658 13.3738 6.70711L8.70712 11.3738C8.31659 11.7643 7.68343 11.7643 7.2929 11.3738L2.62624 6.70711C2.23571 6.31658 2.23571 5.68342 2.62624 5.29289Z"
fill="black"
></path></svg
><svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="xl:hidden IvcXQ ml-2"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.29289 19.7071C7.90237 19.3166 7.90237 18.6834 8.29289 18.2929L14.5858 12L8.29289 5.70711C7.90237 5.31658 7.90237 4.68342 8.29289 4.29289C8.68342 3.90237 9.31658 3.90237 9.70711 4.29289L16.7071 11.2929C17.0976 11.6834 17.0976 12.3166 16.7071 12.7071L9.70711 19.7071C9.31658 20.0976 8.68342 20.0976 8.29289 19.7071Z"
fill="black"
></path>
</svg>
</button>
</li>
<li>
<button
class="text-left outline-none focus-visible:outline-none py-3 border-b border-black-2 xl:border-0 xl:p-4 flex justify-between xl:justify-start items-center text-20/30 font-semibold hover:text-black-4"
type="button"
aria-expanded="false"
>
First Peoples<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="hidden xl:inline transition-transform false IvcXQ ml-2"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.62624 5.29289C3.01676 4.90237 3.64993 4.90237 4.04045 5.29289L8.00001 9.25245L11.9596 5.29289C12.3501 4.90237 12.9833 4.90237 13.3738 5.29289C13.7643 5.68342 13.7643 6.31658 13.3738 6.70711L8.70712 11.3738C8.31659 11.7643 7.68343 11.7643 7.2929 11.3738L2.62624 6.70711C2.23571 6.31658 2.23571 5.68342 2.62624 5.29289Z"
fill="black"
></path></svg
><svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="xl:hidden IvcXQ ml-2"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.29289 19.7071C7.90237 19.3166 7.90237 18.6834 8.29289 18.2929L14.5858 12L8.29289 5.70711C7.90237 5.31658 7.90237 4.68342 8.29289 4.29289C8.68342 3.90237 9.31658 3.90237 9.70711 4.29289L16.7071 11.2929C17.0976 11.6834 17.0976 12.3166 16.7071 12.7071L9.70711 19.7071C9.31658 20.0976 8.68342 20.0976 8.29289 19.7071Z"
fill="black"
></path>
</svg>
</button>
</li>
<li>
<button
class="text-left outline-none focus-visible:outline-none py-3 border-b border-black-2 xl:border-0 xl:p-4 flex justify-between xl:justify-start items-center text-20/30 font-semibold hover:text-black-4"
type="button"
aria-expanded="false"
>
Resources<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="hidden xl:inline transition-transform false IvcXQ ml-2"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.62624 5.29289C3.01676 4.90237 3.64993 4.90237 4.04045 5.29289L8.00001 9.25245L11.9596 5.29289C12.3501 4.90237 12.9833 4.90237 13.3738 5.29289C13.7643 5.68342 13.7643 6.31658 13.3738 6.70711L8.70712 11.3738C8.31659 11.7643 7.68343 11.7643 7.2929 11.3738L2.62624 6.70711C2.23571 6.31658 2.23571 5.68342 2.62624 5.29289Z"
fill="black"
></path></svg
><svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="xl:hidden IvcXQ ml-2"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.29289 19.7071C7.90237 19.3166 7.90237 18.6834 8.29289 18.2929L14.5858 12L8.29289 5.70711C7.90237 5.31658 7.90237 4.68342 8.29289 4.29289C8.68342 3.90237 9.31658 3.90237 9.70711 4.29289L16.7071 11.2929C17.0976 11.6834 17.0976 12.3166 16.7071 12.7071L9.70711 19.7071C9.31658 20.0976 8.68342 20.0976 8.29289 19.7071Z"
fill="black"
></path>
</svg>
</button>
</li>
<li>
<button
class="text-left outline-none focus-visible:outline-none py-3 border-b border-black-2 xl:border-0 xl:p-4 flex justify-between xl:justify-start items-center text-20/30 font-semibold hover:text-black-4"
type="button"
aria-expanded="false"
>
About<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="hidden xl:inline transition-transform false IvcXQ ml-2"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.62624 5.29289C3.01676 4.90237 3.64993 4.90237 4.04045 5.29289L8.00001 9.25245L11.9596 5.29289C12.3501 4.90237 12.9833 4.90237 13.3738 5.29289C13.7643 5.68342 13.7643 6.31658 13.3738 6.70711L8.70712 11.3738C8.31659 11.7643 7.68343 11.7643 7.2929 11.3738L2.62624 6.70711C2.23571 6.31658 2.23571 5.68342 2.62624 5.29289Z"
fill="black"
></path></svg
><svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="xl:hidden IvcXQ ml-2"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.29289 19.7071C7.90237 19.3166 7.90237 18.6834 8.29289 18.2929L14.5858 12L8.29289 5.70711C7.90237 5.31658 7.90237 4.68342 8.29289 4.29289C8.68342 3.90237 9.31658 3.90237 9.70711 4.29289L16.7071 11.2929C17.0976 11.6834 17.0976 12.3166 16.7071 12.7071L9.70711 19.7071C9.31658 20.0976 8.68342 20.0976 8.29289 19.7071Z"
fill="black"
></path>
</svg>
</button>
</li>
<li>
<a
class="text-left outline-none focus-visible:outline-none py-3 border-b border-black-2 xl:border-0 xl:p-4 flex justify-between xl:justify-start items-center text-20/30 font-semibold hover:text-black-4"
href="https://creative.vic.gov.au/news"
>News</a
>
</li>
</ul>
</nav>
</div>
<div class="flex justify-center items-center">
<button class="h-10 w-10" title="Open site search">
<svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="IvcXQ"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M17.2222 9C12.6812 9 9 12.6812 9 17.2222C9 21.7632 12.6812 25.4444 17.2222 25.4444C21.7632 25.4444 25.4444 21.7632 25.4444 17.2222C25.4444 12.6812 21.7632 9 17.2222 9ZM6 17.2222C6 11.0244 11.0244 6 17.2222 6C23.4201 6 28.4444 11.0244 28.4444 17.2222C28.4444 19.7803 27.5885 22.1386 26.1474 24.0261L33.5607 31.4393C34.1464 32.0251 34.1464 32.9749 33.5607 33.5607C32.9749 34.1464 32.0251 34.1464 31.4393 33.5607L24.0261 26.1474C22.1386 27.5885 19.7803 28.4444 17.2222 28.4444C11.0244 28.4444 6 23.4201 6 17.2222Z"
fill="black"
></path>
</svg>
</button>
</div>
<div class="content-center xl:hidden h-10 w-10">
<button type="button" class="w-full h-full" title="Open menu">
<svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="IvcXQ"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M6 10C6 9.17157 6.67157 8.5 7.5 8.5H32.5C33.3284 8.5 34 9.17157 34 10C34 10.8284 33.3284 11.5 32.5 11.5H7.5C6.67157 11.5 6 10.8284 6 10ZM6 20C6 19.1716 6.67157 18.5 7.5 18.5H32.5C33.3284 18.5 34 19.1716 34 20C34 20.8284 33.3284 21.5 32.5 21.5H7.5C6.67157 21.5 6 20.8284 6 20ZM6 30C6 29.1716 6.67157 28.5 7.5 28.5H32.5C33.3284 28.5 34 29.1716 34 30C34 30.8284 33.3284 31.5 32.5 31.5H7.5C6.67157 31.5 6 30.8284 6 30Z"
fill="black"
></path>
</svg>
</button>
</div>
</div>
</div>
</header>
</div>
</div>
<!-- globals_asset_contents_raw:2069903:dist/layouts/matrix/content-resource.html (START) --><!--noindex-->
<div class="container">
<header>
<script type="text/javascript">
if (!window.cv.hasOwnProperty("bannerData")) {
window.cv.bannerData = {};
}
const isOverridden = "" === "1";
if (!isOverridden) {
window.cv.bannerData = {
parentTitle: "Resources",
parentHref: "https:\/\/creative.vic.gov.au\/resources",
heading: "Victoria's creative economy - data",
description:
"<p>316,000 Victorians are employed in creative activities as their primary job. Delve into the latest employment figures across Victoria’s creative and cultural sector.<\/p>",
buttonText: "",
buttonHref: "",
};
}
</script>
<div id="react-banner">
<section
id="banner"
class="flex relative overflow-hidden pt-14 lg:pt-24 lg:pb-24 banner--bottom-padding banner__bg-image grid grid-cols-12 padded bg-theme-1 banner__bg-image bg-no-repeat md:bg-contain"
>
<div
class="[&>*+*]:mt-6 sm:justify-center flex flex-col banner--text-col-start"
>
<div>
<a
href="https://creative.vic.gov.au/resources"
class="text-link-left text-white hover:text-white before:bg-white"
>Resources</a
>
</div>
<h1 class="text-38/46 lg:text-64/72 font-semibold text-white">
Victoria's creative economy - data
</h1>
<p class="lg:text-20/30 text-white banner-description"></p>
<p style="color: #ffffff">
316,000 Victorians are employed in creative activities as their
primary job. Delve into the latest employment figures across
Victoria’s creative and cultural sector.
</p>
<p></p>
</div>
</section>
</div>
<nav
class="bg-white lg:bg-transparent lg:-mt-[39px] md:padded border-b-2 border-theme-1/[.25] lg:border-none"
>
<div
class="md:ml-12 lg:ml-[79px] xl:ml-[100px] 2xl:ml-[113px] lg:h-auto text-black flex items-center items-stretch overflow-x-auto overflow-y-hidden z-10"
>
<script type="text/javascript">
if (!window.hasOwnProperty("tabsData")) {
window.cv.tabsData = {};
}
window.cv.tabsData["2108205"] = {
tabs: [
{
title: "Employment",
assetid: "2108205",
href: "https://creative.vic.gov.au/resources/2021-22-victorian-creative-industry-employment",
active: true,
},
{
title: "Businesses",
assetid: "2108367",
href: "./bussinesses.html",
active: false,
},
{
title: "Economic impact",
assetid: "2108213",
href: "https://creative.vic.gov.au/resources/2021-22-victorian-creative-industry-employment/victorian-creative-industry-gross-value-add-2020-21",
active: false,
},
],
};
</script>
<div class="tabs-react items-center flex" data-assetid="2108205">
<div
class="[&::-webkit-scrollbar]:hidden ml-3 md:ml-0 whitespace-nowrap flex gap-0.5 items-start font-semibold text-theme-1"
>
<div class="lg:rounded-t-md inline-flex relative bg-white">
<a
class="py-3 lg:py-2 lg:px-6 mx-3 lg:mx-0 inline-block relative after:content-[''] after:block lg:after:hidden after:absolute after:inset-x-0 after:bottom-0 after:h-1 after:bg-theme-accent-light"
href="./index.html"
aria-current="page"
>Employment</a
>
</div>
<div
class="lg:rounded-t-md inline-flex relative bg-white opacity-50 lg:opacity-100 lg:bg-opacity-50 lg:hover:bg-opacity-70 transition-colors"
>
<a
class="py-3 lg:py-2 lg:px-6 mx-3 lg:mx-0 stretched-link"
href="./businesses.html"
>Businesses</a
>
</div>
<div
class="lg:rounded-t-md inline-flex relative bg-white opacity-50 lg:opacity-100 lg:bg-opacity-50 lg:hover:bg-opacity-70 transition-colors"
>
<a
class="py-3 lg:py-2 lg:px-6 mx-3 lg:mx-0 stretched-link"
href="./economic.html"
>Economic impact</a
>
</div>
</div>
</div>
</div>
</nav>
</header>
<!--endnoindex-->
<div
id="content"
class="relative padded grid grid-cols-6 md:grid-cols-12 gap-x-8 xl:gap-x-10 pt-10 xl:pt-14"
style="min-height: 710px"
>
<main
class="prose col-span-6 md:col-span-12 mt-10 first:mt-0 content-margined-in"
>
<div id="content_container_2108207">
<div>
<div>
<div>
<h5>
Victoria’s creative industries make a significant
contribution to the state economy. Read on for data on
economic impact, employment and creative business.
</h5>
<hr />
<p
paraid="446198826"
paraeid="{2244c5b3-320a-49df-a887-966f5239b575}{210}"
>
The creative sector employs 9 per cent of the total
workforce in Victoria.
</p>
</div>
<div>
<p
paraid="1587316539"
paraeid="{2244c5b3-320a-49df-a887-966f5239b575}{239}"
>
See the latest employment figures across the creative and
cultural sector.
</p>
<hr />
<div>
<div>
<h2
paraid="263104306"
paraeid="{1e7e0758-8df1-49ee-8710-a18262b50cbf}{75}"
>
<strong>Highlights </strong>
</h2>
</div>
<div>
<h3
paraid="1043792970"
paraeid="{1e7e0758-8df1-49ee-8710-a18262b50cbf}{83}"
>
<strong>August 2021 – August 2022</strong>
</h3>
</div>
<div>
<ul role="list">
<li
data-leveltext=""
data-font="Symbol"
data-listid="2"
data-list-defn-props='{"335552541":1,"335559684":-2,"335559685":360,"335559991":360,"469769226":"Symbol","469769242":[8226],"469777803":"left","469777804":"","469777815":"hybridMultilevel"}'
aria-setsize="-1"
data-aria-posinset="1"
role="listitem"
data-aria-level="1"
>
<strong>316,000*</strong> Average number employed in
creative/cultural activities as their primary job
</li>
<li
data-leveltext=""
data-font="Symbol"
data-listid="2"
data-list-defn-props='{"335552541":1,"335559684":-2,"335559685":360,"335559991":360,"469769226":"Symbol","469769242":[8226],"469777803":"left","469777804":"","469777815":"hybridMultilevel"}'
aria-setsize="-1"
data-aria-posinset="1"
role="listitem"
data-aria-level="1"
>
<strong>9.0% </strong> Creative sector workers as a %
of total employment across Victoria
</li>
<li
data-leveltext=""
data-font="Symbol"
data-listid="2"