-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiowa.html
More file actions
100 lines (82 loc) · 2.02 KB
/
iowa.html
File metadata and controls
100 lines (82 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Iowa | State Gallery</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap" rel="stylesheet" />
<style>
body {
font-family: 'Orbitron', sans-serif;
background: linear-gradient(180deg, #0f172a, #1e293b);
color: white;
margin: 0;
padding: 2em;
text-align: center;
}
h1 {
font-size: 2.5em;
margin-bottom: 1em;
color: #38bdf8;
}
.description {
font-family: 'Inter', sans-serif;
font-size: 1.1em;
max-width: 800px;
margin: 0 auto 2em auto;
color: #cbd5e1;
line-height: 1.8;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 2em;
justify-content: center;
}
.grid a {
display: inline-block;
border-radius: 12px;
overflow: hidden;
border: 2px solid #334155;
transition: transform 0.3s ease;
}
.grid a:hover {
transform: scale(1.05);
box-shadow: 0 0 12px #38bdf8;
}
.grid img {
width: 300px;
height: 200px;
object-fit: cover;
display: block;
}
.back-link {
margin-top: 2em;
font-family: 'Inter', sans-serif;
font-size: 1em;
display: inline-block;
color: #60a5fa;
text-decoration: none;
}
.back-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Iowa</h1>
<div class="grid">
<!-- Repeat for more images -->
</div>
<a class="back-link" href="us-map.html">← Back to Landscape Gallery</a>
<script>
// Optional: Prevent single click from triggering default action
document.querySelectorAll('.grid a').forEach(anchor => {
anchor.addEventListener('click', (e) => e.preventDefault());
anchor.addEventListener('dblclick', () => {
window.open(anchor.href, '_blank');
});
});
</script>
</body>
</html>