-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathindex.html
811 lines (648 loc) · 32 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Chooser</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/vocabulary/favicon/favicon.ico" sizes="any">
<link rel="icon" href="/vocabulary/favicon/favicon.svg" type="image/svg+xml">
<!-- <link rel="manifest" href="/vocabulary/favicon/manifest.webmanifest"> -->
<link rel="apple-touch-icon" sizes="180x180" href="/vocabulary/favicon/apple-touch-icon.png" />
<link rel="stylesheet" media="all" href="style.css">
</head>
<body class="chooser-page">
<a class="skip-to-content" href="#main-content-marker">Skip to content</a>
<header>
<div class="masthead">
<h1><a class="identity-logo product" href="#">Chooser</a></h1>
<button class="expand-menu">Menu</button>
<nav class="primary-menu" aria-label="Primary navigation">
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Support</a></li>
</ul>
</nav>
<nav class="ancillary-menu" aria-label="Ancillary navigation">
<ul>
<li><button class="locale icon-attach fa-globe">English</button></li>
<li><a class="donate icon-attach fa-heart" href="#">Donate</a></li>
<li><button class="explore">Explore CC</button></li>
</ul>
</nav>
</div>
<div class="explore-panel">
<!-- (optional main CC logo, p, link on non-home site back to main site) -->
<aside>
<a class="identity-logo" href="#">Creative Commons</a>
<h2>Our Work Relies On You!</h2>
<p>Help us keep the internet free and open.</p>
</aside>
<nav class="explore-menu" aria-label="Explore menu">
<ul>
<li>
<a href="#">Global Network</a>
<p>Join a global community working to strengthen the Commons</p>
</li>
<li>
<a href="#">Certificate</a>
<p>Become an expert in creating and engaging with openly licensed materials</p>
</li>
<li>
<a href="#">Global Summit</a>
<p>Attend our annual event, promoting the power of open licensing</p>
</li>
<li>
<a href="#">Chooser</a>
<p>Get help choosing the appropriate license for your work</p>
</li>
<li>
<a href="#">Search Portal</a>
<p>Find engines to search openly licensed material for creative and educational reuse</p>
</li>
<li>
<a href="#">Open Source</a>
<p>Help us build products that maximize creativity and innovation</p>
</li>
</ul>
</nav>
</div>
</header>
<main>
<header>
<h1>Choose a License for Your Work</h1>
<p>Follow the steps to select the appropriate license for your work. <br /> This site does not store any information.</p>
</header>
<div class="content">
<form id="chooser">
<ol>
<li>
<fieldset id="do-you-know-which-license-you-need">
<legend>Do you know which license you need?</legend>
<!-- <legend>Choose a License</legend> -->
<div>
<input type="radio" id="yes-choose" name="choose" value="yes" checked />
<label for="yes-choose">Yes</label>
</div>
<div>
<input type="radio" id="no-choose" name="choose" value="no" />
<label for="no-choose">No</label>
</div>
<!--
<div>
<input type="radio" id="choose" name="choose" value="choose" />
<label for="choose">Choose</label>
</div>
<div>
<input type="radio" id="help" name="help" value="help" />
<label for="help">Help me choose</label>
</div> -->
</fieldset>
</li>
<li>
<fieldset id="which-license-do-you-need">
<!-- <legend>Choose a License</legend> -->
<legend>Which license do you need?</legend>
<label for="tool">License</label>
<select name="tool" id="tool">
<option value="noselect" selected>—choose a license—</option>
<option value="cc-0">CC0 1.0</option>
<option value="cc-by">CC-BY 4.0</option>
<option value="cc-by-sa">CC-BY-SA 4.0</option>
<option value="cc-by-nd">CC-BY-ND 4.0</option>
<option value="cc-by-nc">CC-BY-NC 4.0</option>
<option value="cc-by-nc-sa">CC-BY-NC-SA 4.0</option>
<option value="cc-by-nc-nd">CC-BY-NC-ND 4.0</option>
</select>
<!-- <p>OR</p>
<div></div>
<input type="checkbox" id="help" name="help" value="help" />
<label for="help">Help me choose</label>
</div> -->
</fieldset>
</li>
<li>
<fieldset id="require-attribution">
<legend>Attribution?</legend>
<div>
<input type="radio" id="yes-attribution" name="attribution" value="yes" />
<label for="yes-attribution">Yes</label>
</div>
<div>
<input type="radio" id="no-attribution" name="attribution" value="no" />
<label for="no-attribution">No</label>
</div>
</fieldset>
</li>
<li>
<fieldset id="allow-commercial-use">
<legend>Commercial Use?</legend>
<div>
<input type="radio" id="yes-commercial" name="commercial" value="yes" />
<label for="yes-commercial">Yes</label>
</div>
<div>
<input type="radio" id="no-commercial" name="commercial" value="no" />
<label for="no-commercial">No</label>
</div>
</fieldset>
</li>
<li>
<fieldset id="allow-derivatives">
<legend>Derivative Works?</legend>
<div>
<input type="radio" id="yes-derivatives" name="derivatives" value="yes" />
<label for="yes-derivatives">Yes</label>
</div>
<div>
<input type="radio" id="no-derivatives" name="derivatives" value="no" />
<label for="no-derivatives">No</label>
</div>
</fieldset>
</li>
<li>
<fieldset id="share-alike">
<legend>Sharing Requirements?</legend>
<div>
<input type="radio" id="yes-sharing-requirements" name="sharing-requirements" value="yes" />
<label for="yes-sharing-requirements">Yes</label>
</div>
<div>
<input type="radio" id="no-sharing-requirements" name="sharing-requirements" value="no" />
<label for="no-sharing-requirements">No</label>
</div>
</fieldset>
</li>
<!-- <hr /> -->
<li>
<fieldset id="waive-your-copyright">
<legend>Waive your copyright</legend>
<!-- [T]: needs another box here to verify ownership similar to "confirmation" -->
<div>
<input type="checkbox" id="waive" name="waive" value="waive" />
<label for="waive">I hereby waive all copyright and related or neighboring rights together with all associated claims and causes of action with respect to this work to the extent possible under the law.</label>
</div>
<div>
<input type="checkbox" id="read" name="read" value="read" />
<label for="read">I have read and understand the terms and intended legal effect of CC0, and hereby voluntarily elect to apply it to this work.</label>
</div>
</fieldset>
</li>
<li>
<fieldset id="confirmation">
<legend>Confirm that CC Licensing is appropriate</legend>
<div>
<input type="checkbox" id="ownership" name="ownership" value="ownership" />
<label for="ownership">I own or have authority to license the work.</label>
</div>
<div>
<input type="checkbox" id="read" name="read" value="read" />
<label for="read">I have read and understand the terms of the license.</label>
</div>
<div>
<input type="checkbox" id="revocation" name="revocation" value="revocation" />
<label for="revocation">I understand that CC licensing is not revocable.</label>
</div>
</fieldset>
</li>
<hr />
<li>
<fieldset id="attribution-details">
<legend>Attribution details (optional)</legend>
<span>This helps others attribute your work to you, and fills in machine-readable code.</span>
<div>
<label for="title">Title of work</label>
<input type="text" id="title" name="title" placeholder="Untitled" />
</div>
<div>
<label for="creator">Creator of work</label>
<input type="text" id="creator" name="creator" placeholder="Jane Doe" />
</div>
<div>
<label for="work-link">Link to work</label>
<input type="url" id="work-link" name="work-link" placeholder="https://creativecommons.org" />
</div>
<div>
<label for="creator-link">Link to Creator Profile</label>
<input type="url" id="creator-link" name="creator-link" placeholder="https://creativecommons.org" />
</div>
<div>
<label for="work-creation-year">Year of creation</label>
<input type="text" id="work-creation-year" name="work-creation-year" placeholder="1999" />
</div>
<div id="tool-rec-details">
<hr />
<div>
<label for="tool-title">Title of recommended tool (read only)</label>
<input type="text" id="tool-title" name="tool-title" value="recommended tool title" readonly="true" />
</div>
<div>
<label for="tool-url">URL of recommended tool (read only)</label>
<input type="text" id="tool-url" name="tool-url" value="https://creativecommons.org/licenses/by/4.0/" readonly="true" />
</div>
</div>
</fieldset>
</li>
</ol>
</form>
<!-- <button>submit</button> -->
<aside>
<div id="empty">
<p>Waiting for required fields...</p>
</div>
<div id="tool-recommendation">
<h2>Recommended Choice</h2>
<article class="tool">
</article>
</div>
<div id="mark-your-work">
<header>
<h3>Mark Your Work</h3>
<p>Choose the kind of work to get appropriate license code or public domain marking.</p>
</header>
<details class="medium">
<summary>Website</summary>
<p>If you are licensing or marking one work, paste the code next to it. If you are licensing or marking the whole page or blog, you can paste the code at the bottom of the page.</p>
<article>
<details class="format" name="website" open>
<summary>Rich Text</summary>
<p class="rich-text mark">[contextually formatted mark here]</p>
<footer>
<div>
<input type="checkbox" id="rich-text-full-name" name="rich-text-full-name" value="rich-text-full-name" />
<label for="rich-text-full-name">full tool name</label>
</div>
<button id="copy-rich-text-mark">Copy</button>
</footer>
</details>
</article>
<article>
<details class="format" name="website">
<summary>HTML</summary>
<textarea class="html mark" readonly="true">[contextually formatted mark here]</textarea>
<footer>
<div>
<input type="checkbox" id="html-full-name" name="html-full-name" value="html-full-name" />
<label for="html-full-name">full tool name</label>
</div>
<button id="copy-html-mark">Copy</button>
</footer>
</details>
</article>
</details>
<details class="medium">
<summary>Print Work or Media</summary>
<p>Copy the text below and paste it on the title and/or copyright page of your print work or presentation, or in the credits of your media.</p>
<article>
<details class="format" name="print" open>
<summary>Plain Text</summary>
<p class="plain-text mark">[contextually formatted mark here]</p>
<footer>
<div>
<input type="checkbox" id="plain-text-full-name" name="plain-text-full-name" value="plain-text-full-name" />
<label for="plain-text-full-name">full tool name</label>
</div>
<button id="copy-plain-text-mark">Copy</button>
</footer>
</details>
</article>
</details>
</div>
<div id="help">
<h2>Confused? Need Help?</h2>
<details name="help">
<summary>What are Creative Commons licenses?</summary>
<p>Creative Commons licenses are legal tools that help you grant copyright permissions to the general public. Our CC legal tools include <a href="https://creativecommons.org/licenses/" target="_blank" rel="noopener noreferrer">six different licenses</a> and <a href="https://creativecommons.org/share-your-work/public-domain/cc0/" target="_blank" rel="noopener noreferrer">one public domain dedication tool</a>. It is important to specify which one of the 7 legal tools you are applying to your material. The license chooser can help you decide which license is right for you.</p>
<p>CC licenses may be applied to any type of copyrightable work. The only types of works for which CC does not recommend its licenses are computer software and hardware, where we recommend a standard free software license instead. For works that are already in the public domain we recommend that you mark them with the <a href="https://creativecommons.org/about/pdm" target="_blank" rel="noopener noreferrer">Public Domain Mark</a>. If you hold the rights to a work but would like to place it into the public domain, you can use the Chooser to select CC0.</p>
</details>
<details name="help">
<summary>How to apply a Creative Commons license</summary>
<p>You can license your work by marking it with the specific CC license you choose. This marking can be as simple as a bit of text stating the license in a copyright notice, or as complex as embedding the license information on your website using the HTML code associated with the particular license. We strongly recommend including a link to the applicable license (e.g., <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="noopener noreferrer">https://creativecommons.org/licenses/by/4.0/</a>).</p>
</details>
<details name="help">
<summary>What should I consider?</summary>
<p>As a creator licensing a work, among <a href="https://wiki.creativecommons.org/wiki/Considerations_for_licensors_and_licensees#Considerations_for_licensors" target="_blank" rel="noopener noreferrer">other considerations</a>, you should:</p>
<ul>
<li><a href="https://wiki.creativecommons.org/wiki/Considerations_for_licensors_and_licensees#Remember_the_license_may_not_be_revoked." target="_blank" rel="noopener noreferrer">Remember that once you have applied a CC license, you cannot revoke it</a>.</li>
<li><a href="https://wiki.creativecommons.org/wiki/Considerations_for_licensors_and_licensees#Think_about_how_you_want_the_material_to_be_used." target="_blank" rel="noopener noreferrer">Choose your license based on how you want the material to be used</a>.</li>
<li><a href="https://wiki.creativecommons.org/wiki/Considerations_for_licensors_and_licensees#Specify_attribution_information_if_desired." target="_blank" rel="noopener noreferrer">Let people know how to credit you (or whether you want credit at all)</a>.</li>
</ul>
</details>
<details name="help">
<summary>What do the icons mean?</summary>
<p> The icons represent key features of the different CC license options: </p>
<dl class="conditions-definitions">
<div>
<dt class="icon-attach cc-by">Attribution Required (BY)</dt>
<dd>Credit must be given to you, the creator.</dd>
</div>
<div>
<dt class="icon-attach cc-nc">Commercial Use Not Allowed (NC/NonCommercial)</dt>
<dd>
Only noncommercial use of your work is permitted.
<em>Noncommercial means not primarily intended for or directed towards commercial advantage or monetary compensation.</em>
</dd>
</div>
<div>
<dt class="icon-attach cc-sa">Distributed on Same Terms (SA/ShareAlike)</dt>
<dd>Adaptations must be shared under the same terms.</dd>
</div>
<div>
<dt class="icon-attach cc-nd">Modifying Not Allowed (ND/NoDerivatives)</dt>
<dd>No derivatives or adaptations of your work are permitted.</dd>
</div>
</dl>
</details>
<details name="help">
<summary>What if I have other questions?</summary>
<p>You can find a full list of our <a href="https://creativecommons.org/faq/" target="_blank" rel="noopener noreferrer">frequently asked questions</a> on our site. If your questions or concerns are not answered there, you can email us at <a href="mailto:legal@creativecommons.org" target="_blank" rel="noopener noreferrer">legal@creativecommons.org</a>.</p>
</details>
</div>
</aside>
</div>
</main>
<footer>
<a class="identity-logo" href="#">Creative Commons</a>
<nav class="footer-menu" aria-label="Footer menu">
<ul>
<li><a href="/about/contact">Contact</a></li>
<li><a href="https://mail.creativecommons.org/subscribe" target="_blank">Newsletter</a></li>
<li><a href="/privacy">Privacy</a></li>
<li><a href="/policies">Policies</a></li>
<li><a href="/terms">Terms</a></li>
</ul>
</nav>
<div class="contact">
<!-- this area lacks a heading? -->
<h2>Contact Us</h2>
<p>Creative Commons <br /> PO Box 1866, Mountain View, CA 94042</p>
<p><a href="mailto:info@creativecommons.org">info@creativecommons.org</a></p>
<nav class="social-menu" aria-label="Social menu">
<ul>
<!-- <li><a class="icon-replace fa-instagram" href="#">Instagram</a></li> -->
<li><a class="icon-replace fa-bluesky" href="https://bsky.app/profile/creativecommons.bsky.social" target="_blank">Bluesky</a></li>
<li><a class="icon-replace fa-mastodon" href="https://mastodon.social/@creativecommons" target="_blank">Mastodon</a></li>
<li><a class="icon-replace fa-facebook" href="https://www.facebook.com/creativecommons" target="_blank">Facebook</a></li>
<li><a class="icon-replace fa-linkedin" href="https://www.linkedin.com/company/creative-commons/" target="_blank">LinkedIn</a></li>
</ul>
</nav>
</div>
<div class="subscribe">
<h2>Subscribe to our Newsletter</h2>
<form action="https://creativecommons.us4.list-manage.com/subscribe/post?u=fd30364b6577b471373d6076c&id=4603fe102a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate newsletter" target="_blank">
<input type="email" value="" name="EMAIL" class="email input" id="mce-EMAIL" placeholder="Your email" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px" aria-hidden="true">
<input type="text" name="b_fd30364b6577b471373d6076c_4603fe102a" tabindex="-1" value="">
</div>
<input type="submit" value="subscribe" id="mc-embedded-subscribe" class="button small">
</form>
</div>
<div class="donate">
<h2>Support Our Work</h2>
<p>Our work relies on you! Help us keep the Internet free and open.</p>
<a class="donate icon-attach cc-heart-filled" href="https://www.classy.org/give/313412/#!/donation/checkout?c_src=website&c_src2=top-of-page-banner" target="_blank">Donate Now</a>
</div>
<div class="license">
<p>Except where otherwise <a href="/policies/#license">noted</a>, content on this site is licensed under a <a href="/licenses/by/4.0/">Creative Commons Attribution 4.0 International license</a>. Icons by <a href="https://fontawesome.com/" target="_blank">Font Awesome</a>.</p>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-logo"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-by"></use>
</svg>
</div>
</footer>
<script src="vocabulary/js/vocabulary.js"></script>
<script src="scripts.js"></script>
<template id="cc-0" class="tool mark">
<header>
<h3>CC0 1.0</h3>
<span class="tool-icons">
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-logo"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-zero"></use>
</svg>
</span>
<h4>CC0 1.0 Universal</h4>
</header>
<div class="description">
<p>By marking the work with a CC0 public domain dedication, the creator is giving up their copyright and allowing reusers to distribute, remix, adapt, and build upon the material in any medium or format, even for commercial purposes.</p>
</div>
<dl class="conditions-definitions">
<div>
<dt class="icon-attach cc-zero">CC0</dt>
<dd>This work has been marked as dedicated to the public domain.</dd>
</div>
</dl>
<a href="https://creativecommons.org/publicdomain/zero/1.0/">See the License Deed</a>
</template>
<template id="cc-by" class="tool license">
<header>
<h3>CC-BY 4.0</h3>
<span class="tool-icons">
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-logo"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-by"></use>
</svg>
</span>
<h4>Creative Commons Attribution 4.0 International</h4>
</header>
<div class="description">
<p>This license requires that reusers give credit to the creator. It allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, even for commercial purposes.</p>
</div>
<dl class="conditions-definitions">
<div>
<dt class="icon-attach cc-by">BY</dt>
<dd>Credit must be given to you, the creator.</dd>
</div>
</dl>
<a href="https://creativecommons.org/licenses/by/4.0/">See the License Deed</a>
</template>
<template id="cc-by-sa" class="tool license">
<header>
<h3>CC BY-SA 4.0</h3>
<span class="tool-icons">
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-logo"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-by"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-sa"></use>
</svg>
</span>
<h4>Creative Commons Attribution-ShareAlike 4.0 International</h4>
</header>
<div class="description">
<p>This license requires that reusers give credit to the creator. It allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, even for commercial purposes. If others remix, adapt, or build upon the material, they must license the modified material under identical terms.</p>
</div>
<dl class="conditions-definitions">
<div>
<dt class="icon-attach cc-by">BY</dt>
<dd>Credit must be given to you, the creator.</dd>
</div>
<div>
<dt class="icon-attach cc-sa">SA</dt>
<dd>Adaptations must be shared under the same terms.</dd>
</div>
</dl>
<a href="https://creativecommons.org/licenses/by-sa/4.0/">See the License Deed</a>
</template>
<template id="cc-by-nd" class="tool license">
<header>
<h3>CC BY-ND 4.0</h3>
<span class="tool-icons">
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-logo"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-by"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-nd"></use>
</svg>
</span>
<h4>Creative Commons Attribution-NoDerivatives 4.0 International</h4>
</header>
<div class="description">
<p>This license requires that reusers give credit to the creator. It allows reusers to copy and distribute the material in any medium or format in unadapted form only, even for commercial purposes.</p>
</div>
<dl class="conditions-definitions">
<div>
<dt class="icon-attach cc-by">BY</dt>
<dd>Credit must be given to you, the creator.</dd>
</div>
<div>
<dt class="icon-attach cc-nd">ND</dt>
<dd>No derivatives or adaptations of your work are permitted.</dd>
</div>
</dl>
<a href="https://creativecommons.org/licenses/by-nd/4.0/">See the License Deed</a>
</template>
<template id="cc-by-nc" class="tool license">
<header>
<h3>CC BY-NC 4.0</h3>
<span class="tool-icons">
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-logo"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-by"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-nc"></use>
</svg>
</span>
<h4>Creative Commons Attribution-NonCommercial 4.0 International</h4>
</header>
<div class="description">
<p>This license requires that reusers give credit to the creator. It allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, for noncommercial purposes only.</p>
</div>
<dl class="conditions-definitions">
<div>
<dt class="icon-attach cc-by">BY</dt>
<dd>Credit must be given to you, the creator.</dd>
</div>
<div>
<dt class="icon-attach cc-nc">NC</dt>
<dd>
Only noncommercial use of your work is permitted.
<em>Noncommercial means not primarily intended for or directed towards commercial advantage or monetary compensation.</em>
</dd>
</div>
</dl>
<a href="https://creativecommons.org/licenses/by-nc/4.0/">See the License Deed</a>
</template>
<template id="cc-by-nc-sa" class="tool license">
<header>
<h3>CC BY-NC-SA 4.0</h3>
<span class="tool-icons">
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-logo"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-by"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-nc"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-sa"></use>
</svg>
</span>
<h4>Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International</h4>
</header>
<div class="description">
<p>This license requires that reusers give credit to the creator. It allows reusers to distribute, remix, adapt, and build upon the material in any medium or format, for noncommercial purposes only. If others modify or adapt the material, they must license the modified material under identical terms.</p>
</div>
<dl class="conditions-definitions">
<div>
<dt class="icon-attach cc-by">BY</dt>
<dd>Credit must be given to you, the creator.</dd>
</div>
<div>
<dt class="icon-attach cc-nc">NC</dt>
<dd>
Only noncommercial use of your work is permitted.
<em>Noncommercial means not primarily intended for or directed towards commercial advantage or monetary compensation.</em>
</dd>
</div>
<div>
<dt class="icon-attach cc-sa">SA</dt>
<dd>Adaptations must be shared under the same terms.</dd>
</div>
</dl>
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">See the License Deed</a>
</template>
<template id="cc-by-nc-nd" class="tool license">
<header>
<h3>CC BY-NC-ND 4.0</h3>
<span class="tool-icons">
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-logo"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-by"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-nc"></use>
</svg>
<svg>
<use href="vocabulary/svg/cc/icons/cc-icons.svg#cc-nd"></use>
</svg>
</span>
<h4>Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International</h4>
</header>
<div class="description">
<p>This license requires that reusers give credit to the creator. It allows reusers to copy and distribute the material in any medium or format in unadapted form and for noncommercial purposes only.</p>
</div>
<dl class="conditions-definitions">
<div>
<dt class="icon-attach cc-by">BY</dt>
<dd>Credit must be given to you, the creator.</dd>
</div>
<div>
<dt class="icon-attach cc-nc">NC</dt>
<dd>
Only noncommercial use of your work is permitted.
<em>Noncommercial means not primarily intended for or directed towards commercial advantage or monetary compensation.</em>
</dd>
</div>
<div>
<dt class="icon-attach cc-nd">ND</dt>
<dd>No derivatives or adaptations of your work are permitted.</dd>
</div>
</dl>
<a href="https://creativecommons.org/licenses/by-nc-nd/4.0/">See the License Deed</a>
</template>
<template id="plain-text" class="mark">
<p>{{title}} {{copyright}} by {{creator}} is {{typeAsVerb}} {{toolName}}. To view a copy of this {{type}}, visit {{toolURL}}</p>
</template>
</body>
</html>