-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiltered-temples.html
48 lines (43 loc) · 1.85 KB
/
filtered-temples.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Steven C. Thomas">
<meta name="description" content="A filtered list of temples (not comprehensive), done as an assigment for WDD131 at BYU-Idaho.">
<title>WDD 131 - Dynamic Web Fundamentals - Steven Thomas</title>
<!-- <link rel="stylesheet" href="styles/base.css"> -->
<link rel="stylesheet" href="styles/filtered-temples.css">
<!-- <link rel="stylesheet" href="styles/filtered-temples-medium.css"> -->
<link rel="stylesheet" href="styles/filtered-temples-large.css">
<script defer src="scripts/filtered-temples.js"></script>
<script defer src="scripts/getdates.js"></script>
<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=Poppins:wght@100;400&display=swap" rel="stylesheet">
</head>
<body>
<header>
<!-- <h1>Header</h1> -->
<button id="hamburger" type="button"><div>☰</div></button>
<nav>
<ul>
<li><h2>Temple Album</h2></li>
<li><button id="filter-home" type="button">Home</button></li>
<li><button id="filter-old" type="button">Old</button></li>
<li><button id="filter-new" type="button">New</button></li>
<li><button id="filter-large" type="button">Large</button></li>
<li><button id="filter-small" type="button">Small</button></li>
</ul>
</nav>
</header>
<main>
<div id="gallery">
</div>
</main>
<footer>
<p><span id="currentYear"></span> | Steven Thomas | Alaska, USA</p>
<p id="lastModified"></p>
</footer>
</body>
</html>