-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiltered-temples.html
More file actions
45 lines (40 loc) · 1.57 KB
/
filtered-temples.html
File metadata and controls
45 lines (40 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Temple activity WDD131 course Dynamic Web Fundamentals, done by Fernando Costa Jr">
<meta name="author" content="Fernando da Silva Costa Júnior">
<link rel="stylesheet" href="styles/filtered-temples.css">
<link rel="stylesheet" href="styles/filtered-temples-larger.css">
<script defer src="scripts/filtered.temples.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=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<title>Temple Album activity</title>
</head>
<body>
<header>
<h1>Temple Album</h1>
<a id="menu" href="#"></a>
<nav>
<ul class="navigation">
<li><a href="#" id="all">Home</a></li>
<li><a href="#" id="old">Old</a></li>
<li><a href="#" id="new">New</a></li>
<li><a href="#" id="large">Large</a></li>
<li><a href="#" id="small">Small</a></li>
</ul>
</nav>
</header>
<main>
<h1>Home page</h1>
<div id="card-container" class="figures">
</div>
</main>
<footer>
<p>©️ <span id="currentyear"></span> Fernando Costa Jr Brazil</p>
<p id="lastmodified"><span id="lastModified"></span></p>
</footer>
</body>
</html>