-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlp.html
53 lines (53 loc) · 2.32 KB
/
lp.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>LiLi's Playground</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<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=Quicksand:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<section id="heading">
<div class="scoreboard" style="width:250px;">
<p id="playa">PLAYER 1</p>
<p id="number1">SCORE: 0</p>
</div>
<div id="logo" style="width:500px;">
<h1>LiLi's<br/>
PlayGround</h1>
<span id="announcement"></span>
<button id="startOver" style="font-size:24px; line-height:2px;"><span class="material-symbols-outlined">
home
</span></button>
</div>
<div class="scoreboard" style="width:250px;">
<p id="playa2">PLAYER 2</p>
<p id="number2">SCORE: 0</p>
<audio controls loop>
<source src="upbeat-funk-music.mp3" type="audio/mpeg">
</audio>
</div>
</section>
<section id="the-playground">
<div id="goText"><span id="readySetGo"></span></div>
<div id="lili">
<img id="topjump" src="images/Jumprope-Up.png" height="200px" alt="jumprope">
<img id="ljumpup" src="images/LiLi-Jumping.png" height="200px" alt="lili">
<img id="ljump" onclick="changeImage()" src="images/LiLi-JumpingDown.png" height="200px" alt="lili">
<img id="djump" onclick="changeImage()" src="images/LiLi-Mad.png" height="200px" alt="dede">
<img id="djumpup" src="images/LiLi-Mistake.png" height="200px" alt="dede">
<img id="botjump" src="images/Jumprope-Down.png" height="200px" alt="jumprope">
</div>
</section>
<section id="jumpButton">
<button id="froggy" type="button" name="button">Jump Player 1</button>
<button id="froggy2" type="button" name="button">Jump Player 2</button>
</section>
</div>
</body>
<script src="app.js"></script>
</html>