info2300-2020sp-website

Citation Policy

You are permitted and encouraged to seek out additional sources of information for this class.

However, for your assignments you may only use external resources (e.g. images, text, fonts, etc.) so long as you follow the policies outlined here and the following subsections.

Definition: External Resources

A resource (e.g. image, video, written content, etc.) is considered external if you did not create it yourself.

Non-External Resource Examples

External Resource Examples

Resource Citation Policy

citation policy flowchart

Resource Citation Requirements

All resources (not just external) must be cited according to these rules:

  1. Every external resource that you use must 1) have a citation visible on-screen near the resource AND 2) must include a citation in the code as a comment.

    Example:

     <!-- Source: https://www.example.com/image.png -->
     <img src="image.png" alt="Example Image"/>
     Source: <cite><a href="https://www.example.com/image.png">Example-o-Rama</a></cite>
    
  2. Every non-external resource must have a citation in the code as a comment.

    Example:

     <!-- Source: (original work) Kyle Harms -->
     <img src="image.png" alt="Example Image"/>
    
  3. Cite the original source who created the resource. Do not cite where you found the resource.

    Google Image Search didn’t create the image; never cite Google Images as the source.

  4. There is no required format for the citation. Include enough information to identify the source. URLs are preferred, but not required.

    You are not required to follow the format of the examples above.

That’s it. That’s the entire citation policy. Don’t make this more complicated than it needs to be.

Examples, Extended Details, & Answers Common Questions

Continue reading below for an expanded version of the citation policy that addresses many frequently asked questions and provides a few more examples.

Citing Non-External Resources

Non-External Resource: If you created the resource, indicate so in a comment (HTML, CSS, JavaScript, etc.). The credit does not have to appear on the screen.

HTML Example:

  <!-- Source: (original work) Kyle Harms -->

CSS Example:

  /* Source: (original work) Kyle Harms */

Citing External Resources

External Resource: If you use a resource you didn’t create, you must give credit, and the credit must appear on the screen and in a comment.