-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
167 lines (147 loc) · 5.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
h1 {
font-size: 36px;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 24px;
}
p {
font-size: 16px;
line-height: 1.5;
}
.collaborator {
display: flex;
align-items: center;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
}
.collaborator img {
max-width: 100px;
border-radius: 50%;
margin-right: 10px;
}
.collaborator-details h3 {
font-size: 20px;
margin: 0;
}
.collaborator-details p {
margin: 0;
}
.how-to-play {
background-color: #f9f9f9;
padding: 20px;
border-radius: 5px;
}
.repo-card {
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
background-color: #f9f9f9;
text-align: center;
}
.repo-title {
font-size: 24px;
margin-bottom: 10px;
}
.repo-description {
font-size: 16px;
margin-bottom: 20px;
}
.github-logo {
max-width: 100px;
margin-bottom: 20px;
}
.view-on-github-button {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-size: 18px;
}
.view-on-github-button:hover {
background-color: #555;
}
</style>
</head>
<body>
<header>
<h1>About the Game</h1>
</header>
<div class="container">
<h2>Introduction</h2>
<p>
Welcome to the Virtual Kite Flying Simulator, an exciting web-based game designed to rekindle the vibrant tradition of August month Kite festivals in Sri Lanka. Immerse yourself in this cultural celebration as you take to the virtual skies, flying your kite with skill and finesse. Your mission is to soar high and avoid the challenge of enemy kites, making it an exhilarating test of your kite-flying prowess. Join us in preserving this cherished tradition and enjoy the thrill of the Kites festival right from your screen.
</p>
<h2>How to Play</h2>
<div class="how-to-play">
<p>Playing our game is simple:</p>
<ol>
<li><b>Launch the Game:</b> Start the game by clicking the "Play" button..</li>
<li><b>Control Your Kite:</b> Use your mouse to control the movement of your kite. Move it in the direction you want your kite to go.</li>
<li><b>Adjust Altitude:</b> Left-click to release extra string and gain altitude. Right-click to release string and reduce altitude. Balance your kite's height to avoid collisions with enemy kites.</li>
<li><b>Avoid Enemies:</b> Keep an eye out for enemy kites. Colliding with them ends the game. Maneuver your kite skillfully to evade them.</li>
<li><b>Score Points:</b> Your score increases the longer you keep your kite flying without collisions. Challenge yourself to achieve the highest score possible and become a kite-flying master!</li>
</ol>
</div>
<br>
<!-- Repository Card Section -->
<div class="repo-card">
<h2 class="repo-title">Game Repository</h2>
<p class="repo-description">Explore the source code and contribute to our game's development on GitHub!</p>
<img src="https://cdn-icons-png.flaticon.com/512/25/25231.png" alt="GitHub Logo" class="github-logo"> <br>
<a href="https://github.com/UvinduBro/Flying-Kites" class="view-on-github-button" target="_blank">View on GitHub</a>
</div>
<h2>Collaborators</h2>
<div class="collaborator">
<img src="https://avatars.githubusercontent.com/u/118661330?s=64&v=4" alt="Collaborator 1">
<div class="collaborator-details">
<h3>Uvindu Rajapakshe</h3>
<p>Developer</p>
</div>
</div>
<div class="collaborator">
<img src="https://avatars.githubusercontent.com/u/85143235?s=64&v=4" alt="Collaborator 2">
<div class="collaborator-details">
<h3>Lakshitha Deshan</h3>
<p>Developer</p>
</div>
</div>
<div class="collaborator">
<img src="https://avatars.githubusercontent.com/u/84648368?s=64&v=4" alt="Collaborator 3">
<div class="collaborator-details">
<h3>Kasun Chanuka</h3>
<p>Developer</p>
</div>
</div>
</div>
</body>
</html>