-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
186 lines (174 loc) · 6.11 KB
/
about.html
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About | fáilte</title>
<meta
name="description"
content="Discover Ireland's top attractions with fáilte - your go-to guide! Our
interactive map features 600+ attractions, from castles to museums and nature reserves. Planning
your itinerary has never been easier with our user-friendly map and dedicated attraction pages.
Play our geo-guessing game and compete with friends to see who knows Ireland best!"
/>
<!-- META FOR FACEBOOK/LINKEDIN -->
<meta property="og:title" content="fáilte" />
<meta property="og:description" content="Discover Ireland's hidden gems" />
<meta property="og:url" content="https://failte.app/about.html" />
<meta
property="og:image"
content="https://failte.app/assets/readme/img/cover-img.jpg"
/>
<!-- META FOR TWITTER -->
<meta name="twitter:title" content="fáilte" />
<meta name="twitter:description" content="Discover Ireland's hidden gems" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://failte.app/assets/readme/img/cover-img.jpg"
/>
<!-- ADD STYLESHEET -->
<link rel="stylesheet" href="assets/css/styles.css" />
<!-- ADD FONTAWESOME -->
<script
src="https://kit.fontawesome.com/ee1bd5fe1b.js"
crossorigin="anonymous"
></script>
<!-- ADD GOOGLE FONTS -->
<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=Lilita+One&display=swap"
rel="stylesheet"
/>
<!-- ADD FAVICON -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/img/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/img/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/img/faviconfavicon-16x16.png"
/>
<link rel="manifest" href="assets/img/favicon/site.webmanifest" />
</head>
<body>
<div id="container">
<!-- HEADER -->
<header>
<div id="container-header">
<div id="nav-logo">
<a href="index.html" aria-label="Click to go to Homepage">fáilte</a>
</div>
<nav>
<ul>
<li><a href="index.html" aria-label="Go to Map page">Map</a></li>
<li>
<a href="play.html" aria-label="Go to Geo Game page">Play</a>
</li>
<li>
<a
href="about.html"
class="active-page"
aria-label="Go to About page"
>About</a
>
</li>
<li>
<a href="contact.html" aria-label="Go to Contact page"
>Contact</a
>
</li>
</ul>
</nav>
</div>
</header>
<!-- MAIN CONTENT -->
<main>
<div id="container-about-contact-page">
<div class="about-contact-container">
<h1>About fáilte</h1>
<p class="about-contact-paragraph">
Discover Ireland's top attractions with <strong>fáilte</strong> -
your go-to guide! Our interactive map features 600+ attractions,
from castles to museums and nature reserves. Planning your
itinerary has never been easier with our user-friendly map and
dedicated attraction pages. Play our geo-guessing game and compete
with friends to see who knows Ireland best!
</p>
<p class="about-contact-paragraph">
<strong>fáilte</strong> uses
<a
class="inline-link"
href="https://data.gov.ie/dataset/attractions?package_type=dataset"
target="_blank"
>Irish Public Sector Data from Fáilte Ireland</a
>
licensed under a CC BY 4.0 license. <strong>fáilte</strong> is not
affiliated with Fáilte Ireland.
</p>
<p class="about-contact-paragraph">
<strong>Start exploring Ireland now with fáilte!</strong>
</p>
<a class="primary-cta" href="index.html" aria-label="Go to Map"
>Get started</a
>
</div>
<!-- IMAGE -->
<div id="about-contact-img-container">
<img
id="about-contact-img"
src="assets/img/ireland-img.png"
alt="Background image of Ireland map"
/>
</div>
</div>
</main>
<!-- FOOTER -->
<footer>
<div id="footer-links">
<a
href="https://github.com/CarlMurray/failte-pp2"
target="_blank"
title="See this project's Repo on GitHub"
aria-label="See this project's Repo on GitHub"
><img
class="footer-icon"
src="assets/img/footer/footer-github-icon.svg"
alt="GitHub Logo"
/></a>
<a
href="https://carlmurray.design"
target="_blank"
title="View my portfolio of projects"
aria-label="View my portfolio of projects"
><img
class="footer-icon"
src="assets/img/footer/footer-portfolio-icon.svg"
alt="Personal Portfolio Logo"
/></a>
<a
href="https://www.linkedin.com/in/carljmurray/"
target="_blank"
title="Connect with me on LinkedIn"
aria-label="Connect with me on LinkedIn"
><img
class="footer-icon"
src="assets/img/footer/footer-linkedin-icon.svg"
alt="LinkedIn Logo"
/></a>
</div>
</footer>
</div>
</body>
</html>