-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Soccer Game by Bertrand & Bhargavi</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<h1>Soccer Game </h1>
<p>Created by Bertrand & Bhargavi.</p>
</div>
<div class="description">
<h2>About the Game</h2>
<p>
Our interactive soccer game, inspired by foosball, challenges players to navigate a ball past randomly moving defenders to score goals. With each goal, the game intensifies: the ball's speed increases, and more defenders join the fray. Designed for soccer enthusiasts and casual players alike, this game combines strategy, agility, and fun.
</p>
<p>
Players use arrow keys to control the ball, moving it across the field with precision. Each level introduces a higher velocity, demanding quicker reflexes and smarter maneuvers. Our goal is to create a series of levels that not only increase in speed but also in difficulty, offering a competitive and engaging experience for all.
</p>
<p>
We prioritize fair play and user privacy; no personal information is stored, ensuring a secure gaming environment. Our objective is to create an ethically responsible game that's as enjoyable to play as it is to master.
</p>
</div>
<div class="game-view">
<h2>Game View</h2>
<!-- Placeholder for game visualization -->
<img src="soccergoal.png" alt="Goal" class="game-image">
<img src="soccerball.png" alt="Ball" class="game-image">
<img src="soccerplayer.png" alt="Defender" class="game-image">
</div>
<div class="video">
<h2>Game Tutorial</h2>
<!-- Placeholder for game tutorial video -->
<video width="320" height="240" controls>
<source src="IMG_0785(1).mov.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</body>
</html>