-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (74 loc) · 2.74 KB
/
index.html
File metadata and controls
76 lines (74 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flappy Bird</title>
<link href="images/favicon.ico" rel="icon" type="image/x-icon" />
<!-- importing bootstrap -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<!-- importing the css stylesheet -->
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<canvas id="canvas1"></canvas>
<div class="bird"></div>
<!-- Creating navbar -->
<header class="topnav">
<img class="topnav-icon staticBird" src="images/bird2.gif" />
<a class="active" href="index.html">Game</a>
<a href="html pages/leaderboard.html">Leaderboard</a>
<a href="html pages/about.html">About</a>
<a href="html pages/contact.html">Contact</a>
<a class="right" href="html pages/log_in.html">Log in</a>
<img src="images/left.gif" class="wings left" />
<img src="images/right.gif" class="wings right" />
<img class="topnav-logo bounce" src="images/Logo.png" width="300" />
</header>
<!-- importing images -->
<main>
<div class="cloud" id="cloud1"></div>
<div class="cloud" id="cloud2"></div>
<img
class="imag zoom-effect joystick"
id="img1"
src="images/joystick.png"
alt=""
/>
<img class="imag zoom-effect" id="img2" src="images/trophy.png" alt="" />
<div class="discord-container">
<a href="" target="_blank">
<img class="discord-img bounce" src="images/discord.png" />
</a>
</div>
</main>
<!-- Creating footer -->
<footer class="footer">
<img class="pipe1" id="pipe" src="images/pipe.png" />
<img class="zoom-effect" id="sound" src="images/soundIcon.png" />
<div class="socialLinks socialLinksMain">
<a href="" target="_blank">
<img class="icon bounce" src="images/facebook.png" />
</a>
<a href="" target="_blank">
<img class="icon bounce" src="images/reddit.png" />
</a>
<a href="" target="_blank">
<img class="icon bounce" src="images/youtube.png" />
</a>
<p class="follow-us" id="lol">Follow Us</p>
</div>
</footer>
<audio id="audio">
<source src="audio/backgroundSong.mp3" />
</audio>
<script type="text/javascript" src="javascript/index.js"></script>
<script type="text/javascript" src="javascript/flappybird.js"></script>
<script type="text/javascript" src="javascript/audio.js"></script>
</body>
</html>