-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemples.html
More file actions
81 lines (76 loc) · 2.83 KB
/
temples.html
File metadata and controls
81 lines (76 loc) · 2.83 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
<!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/temples.css">
<link rel="stylesheet" href="styles/temples-larger.css">
<script defer src="scripts/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="#">Home</a></li>
<li><a href="#">Old</a></li>
<li><a href="#">New</a></li>
<li><a href="#">Large</a></li>
<li><a href="#">Small</a></li>
</ul>
</nav>
</header>
<main>
<h1>Home page</h1>
<div class="figures">
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
<figure>
<img src="images/temple.jpg" alt="dallas temple">
<figcaption>Dallas Texas Temple</figcaption>
</figure>
</div>
</main>
<footer>
<p>©️ <span id="currentyear"></span> Fernando Costa Jr Brazil</p>
<p id="lastmodified"><span id="lastModified"></span></p>
</footer>
</body>
</html>