-
Notifications
You must be signed in to change notification settings - Fork 0
/
w05-task.html
54 lines (47 loc) · 1.65 KB
/
w05-task.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSE 121b | W05: Programming Tasks</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;600&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<nav>
<ul id="menu">
<li><a id="toggleMenu">≡</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="w01-task.html">W1 Task</a></li>
<li><a href="w03-task.html">W3 Task</a></li>
<li><a href="w04-task.html">W4 Task</a></li>
<li><a href="w05-task.html" class="active">W5 Task</a></li>
<li><a href="project2.html">Project</a></li>
</ul>
</nav>
<main id="gridly">
<h1>W05: Programming Tasks</h1>
<h2>Fetch(): Some Latter-day Temples</h2>
<select id="sortBy" title="Choose a data filter.">
<option value="" disabled selected>Filter Temples</option>
<option value="utah">Utah</option>
<option value="notutah">Outside of Utah</option>
<option value="older">Built Before 1950</option>
<option value="all">No Filter</option>
</select>
<div id="temples">
</div>
</main>
<footer>
©<span id="year"></span> | Week 05 - Fetching Temple Data | CSE 121b
</footer>
<script src="scripts/main.js"></script>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
<script src="scripts/w05-task.js"></script>
</body>
</html>