forked from haleyqincornell/class-05-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
citations.php
52 lines (40 loc) · 1.67 KB
/
citations.php
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
<?php
$page_title = 'Citations';
$nav_home_class = '';
$nav_citations_class = 'active_page';
$nav_cooking_class = '';
?>
<!DOCTYPE html>
<html lang="en">
<?php include 'includes/meta.php' ?>
<body>
<?php include 'includes/header.php' ?>
<main>
<h2>Citation Policy</h2>
<p>
Every resource (text, images, videos, etc.) must be cited according the INFO 2300 citation policy.
</p>
<p>Use the following flow chart to determine how to cite a resource:</p>
<picture>
<img alt="If you created the resource, cite yourself in a comment near the resource. Otherwise, cite the source on-screen near the resource" src="images/citation-flow.svg">
</picture>
<cite>Source: INFO 2300 Syllabus</cite>
<blockquote>
<p>
<strong>Citing External Resources:</strong> Please cite any resources you <em>use</em> or <em>reference</em>
that <strong>you did not create yourself <em>specifically</em> for this class</strong> (external resource). The
citation must be public (i.e. visible in the browser) and near the resource. <strong>There is no required
citation format.</strong>
</p>
<p>
<strong>Citing Internal Resources:</strong> For resources that <strong>you created <em>specifically</em> for
this class</strong>, you don't need to cite them publicly (i.e. visible in the browser), but <strong>you do
need to let us know you created it in a comment <em>near</em> the resource in the code</strong> (so we know
you didn't forget to cite them.)
</p>
</blockquote>
<cite>Source: INFO 2300 Syllabus</cite>
</main>
<?php include 'includes/footer.php' ?>
</body>
</html>