-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (46 loc) · 1.62 KB
/
index.html
File metadata and controls
54 lines (46 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ireland Travel Map</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<h1>Ireland Travel Map</h1>
<p>Click a marker to explore each destination.</p>
</header>
<main class="map-page">
<section>
<h2>Map of Ireland</h2>
<div class="map-wrapper custom-map-wrapper">
<img src="images/Ireland.svg" alt="Map of Ireland" class="custom-map-image" />
<a href="belfast.html" class="html-marker belfast" aria-label="Open Belfast page">
<span class="pin"></span>
<span class="pin-label">Belfast</span>
</a>
<a href="galway.html" class="html-marker galway" aria-label="Open Galway page">
<span class="pin"></span>
<span class="pin-label">Galway</span>
</a>
<a href="cliffs-of-moher.html" class="html-marker cliffs" aria-label="Open Cliffs of Moher page">
<span class="pin"></span>
<span class="pin-label">Cliffs of Moher</span>
</a>
<a href="dublin.html" class="html-marker dublin" aria-label="Open Dublin page">
<span class="pin"></span>
<span class="pin-label">Dublin</span>
</a>
<a href="glendalough.html" class="html-marker glendalough" aria-label="Open Glendalough page">
<span class="pin"></span>
<span class="pin-label">Glendalough</span>
</a>
</div>
</section>
</main>
<footer>
<p>© 2026 Ireland Travel Map</p>
</footer>
</body>
</html>