-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemples.html
More file actions
101 lines (88 loc) · 3.71 KB
/
Copy pathtemples.html
File metadata and controls
101 lines (88 loc) · 3.71 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
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WDD 131 - Temples Album – Nwakwuruibe Bright</title>
<meta name="description" content=" This is the week two assignment on Dynamic Responsive Webpages">
<meta name="author" content="Nwakwuruibe Bright">
<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=Montserrat+Alternates&family=Montserrat:ital@0;1&family=Roboto:ital@0;1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/temples.css">
<link rel="stylesheet" href="styles/temples-large.css">
<script src="scripts/temples.js" defer></script>
</head>
<body>
<header>
<p>Temple Album</p>
<button id="menu" aria-label="Open navigation menu"></button>
<nav>
<ul class="navigation">
<li><a href="#" id="home">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</h1>
<div class="figure-grid">
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image" />
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
<figure>
<img src="images/salt-lake-temple.jpg" alt="salt-lake-temple image">
<figcaption>Salt Lake Temple</figcaption>
</figure>
</div>
</main>
<footer>
<p>© <span id="currentyear"></span> | Nwakwuruibe Bright | Nigeria</p>
<p id="lastModified"></p>
</footer>
</body>
</html>