-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./resources/style.css">
<title>Game Intro</title>
</head>
<body class="level-screen">
<div class="start">
<img src="./resources/assets/logo.png" alt="">
<img id="start-btn" src="./resources/assets/coollogo_com-196721338-removebg-preview.png" alt="" srcset="">
</div>
<img src="./resources/assets/levelScreens/levelSelect.png">
<div class='level-select'>
<div class='park-level'>
<a href="./parkLevel.html"><img class="portrait" src="./resources/assets/levelScreens/parkLevel.png">
<img src="./resources/assets/levelScreens/thePark_selector.png"> </a>
</div>
<div class="hell-level">
<a href="./hellLevel.html"><img class="portrait" src="./resources/assets/levelScreens/hellPortrait.png">
<img src="./resources/assets/levelScreens/hellSelector.png"></a>
</div>
</div>
<audio src="./resources/music/(No Copyright) Intense Action Background Music Cinematic Music by Argsound.mp3" loop="true" autostart="true" width="2" height="0""></audio>
</body>
<script src="./scripts/index.js"></script>
</html>