-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>MARIO</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" href="assets/mario.css">
</head>
<body>
<div class="mario-game" id="container">
<div class="scorebar">
<p><span class="topline-mario">MARIO</span>
<span class="topline-world">WORLD</span>
<span class="topline-time">TIME</span>
<span id="bottomline-score">000000</span>
<span id="bottomline-coin"><img src="https://raw.githubusercontent.com/LantareCode/random-this-and-thats/master/CSS/SuperMario-Animation/images/Coin.gif" height="40px"> x <span id="updateCoins">00</span></span>
<span class="bottomline-world">1 - 1</span>
<span class="bottomline-time" id="timeLeft">000</span>
</p>
</div>
<div id="background"></div>
<div id="foreground" class="layer foreground"></div>
<div id="items" class="layer"><div id="block"> <img src="assets/coin.gif" alt="" id="coin"/></div></div>
<div id="plants" class="layer plants"></div>
<div id="moutains" class="layer moutains"></div>
<div id="clouds" class="layer clouds"></div>
<div id="mario" class="lookingRight"></div>
</div>
<script src="assets/mario.js"></script>
</body>