-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsources.html
More file actions
97 lines (78 loc) · 3.93 KB
/
sources.html
File metadata and controls
97 lines (78 loc) · 3.93 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>AAJSP</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.css" integrity="sha512-UTNP5BXLIptsaj5WdKFrkFov94lDx+eBvbKyoe1YAfjeRPC+gT5kyZ10kOHCfNZqEui1sxmqvodNUx3KbuYI/A==" crossorigin="anonymous"
referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css" integrity="sha512-sMXtMNL1zRzolHYKEujM2AqCLUR9F2C4/05cdbxjjLSRvMQIciEPCQZo++nk7go3BtSuK9kfa/s+a4f4i5pLkw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
</head>
<body>
<header id="navigation-menu" class="header">
<div class="container">
<nav>
<a class="logo" href="#">
<h1>AAJSP</h1>
</a>
<ul class="nav-menu">
<li>
<a href="index.html" class="nav-link">Home</a>
</li>
<li>
<a href="aboutus.html" class="nav-link">About</a>
</li>
<li>
<a href="rocket.html" class="nav-link">Rockets</a>
</li>
<li>
<a href="rooms.html" class="nav-link">Gallery</a>
</li>
<li>
<a href="sources.html" class="nav-link">Sources</a>
</li>
</ul>
<div class="initial">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</div>
</header>
<script>
const initial = document.querySelector('.initial');
const navMenu = document.querySelector('.nav-menu');
initial.addEventListener("click", mobileMenu);
function mobileMenu() {
initial.classList.toggle("active");
navMenu.classList.toggle("active");
}
const navLink = document.querySelectorAll('.nav-link');
navLink.forEach((n) => n.addEventListener("click", closeMenu));
function closeMenu() {
initial.classList.remove("active");
navMenu.classList.remove("active");
}
</script>
<div class="container">
<div class="text">
<div class="heading">
<h5>Work Log: <a href="/pdfs/Work Log TSA.pdf">PDF</a> </h5>
<h5>Copyright Notice: <a href="pdfs/Copyright Checklist.pdf">Copyright Notice</a> </h5>
<h5>Image Sources: All Images are From iStock Images with A Valid License. </h5>
<h2>Sources</h2>
</div>
<div class="para">
<p> “HTML Styles - CSS.” HTML Styles CSS, <a href="https://www.w3schools.com/html/html_css.asp">https://www.w3schools.com/html/html_css.asp</a>.
“HTML & CSS Courses & Tutorials.” Codecademy, <a href="https://www.codecademy.com/catalog/language/html-css">https://www.codecademy.com/catalog/language/html-css</a>.
W3C, <a href="https://www.w3.org/standards/webdesign/htmlcss">https://www.w3.org/standards/webdesign/htmlcss</a>.
“Learn to Style HTML Using CSS - Learn Web Development: MDN.” Learn Web Development | MDN, <a href="https://developer.mozilla.org/en-US/docs/Learn/CSS">https://developer.mozilla.org/en-US/docs/Learn/CSS</a>.
“Intro to HTML/CSS: Making Webpages | Computer Programming.” Khan Academy, Khan Academy,<a href="https://www.khanacademy.org/computing/computer-programming/html-css">https://www.khanacademy.org/computing/computer-programming/html-css</a>.
</p>
</div>
</div>
</div>