generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (130 loc) · 4.44 KB
/
index.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
<!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>Home | fledgling</title>
<meta
name="description"
content="fledgling is an interactive website designed to engage people in birdwatching"
/>
<meta
name="keywords"
content="bird, birdwatching, bird game, eBird, bird sightings, bird identification game"
/>
<meta name="author" content="fledgling" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/e4ffee1eee.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
</head>
<body>
<!--Landing Page - Centered Content -->
<div class="container center">
<div>
<div class="row centered-row title-image">
<!--image wrapped in div to stop it streching on ipad-->
<div>
<img
src="assets/images/robin-gif-new-compressed.gif"
alt="animation of a robin"
/>
</div>
</div>
<div class="row centered-row">
<h1 class="landing-page-title">fledgling</h1>
</div>
<div class="row centered-row">
<h2 class="landing-page-about">hone your birdwatching skills</h2>
</div>
<div class="row centered-row">
<a
role="button"
class="btn btn-outline-dark btn-margin"
href="game.html"
>Play The Game</a
>
<a
role="button"
class="btn btn-outline-dark btn-margin"
href="sightings.html"
>Find Sightings Near You</a
>
<a
role="button"
class="btn btn-outline-dark btn-margin"
href="clock.html"
>Bird Song Clock</a
>
</div>
</div>
</div>
<!--Footer-->
<footer class="mt-auto d-flex align-self-end">
<div class="container">
<div class="row">
<div class="col-sm-6 text-sm-left">
<h3>fledgling</h3>
<p class="small mb-md-2">
An interactive website designed to engage people in birdwatching
</p>
</div>
<div class="col-sm-6 text-sm-right">
<ul class="list-inline social-links">
<li class="list-inline-item">
<a target="_blank" href="https://www.facebook.com">
<i
class="fa-brands fa-facebook-square"
aria-hidden="true"
></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com">
<i class="fa fa-twitter" aria-hidden="true"></i>
<span class="sr-only">Twitter</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.instagram.com">
<i class="fa fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram</span>
</a>
</li>
</ul>
</div>
<div class="col-sm-6 text-sm-left">
<p class="small">Copyright © 2022 fledgling</p>
</div>
</div>
</div>
</footer>
<!--Bootstrap scripts-->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF"
crossorigin="anonymous"
></script>
<!--Jquery and my script-->
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"
></script>
<script src="assets/scripts/script.js"></script>
</body>
</html>