-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
43 lines (37 loc) · 1.44 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
43
<!DOCTYPE html>
<html>
<head>
<title> Wheel Of Riches </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="lottery-wheel.min.js"></script>
</head>
<body>
<h1 id="text">Greetings</h1>
<div id="firstpagecontent">
<!-- <img id="wheel" src="images/wheelofriches.png" height="500" width="500"> -->
<svg id="wheel"></svg>
<a href="/second.html" class="btn red rick" id=startbtn> Start</a>
<audio id="spinwheelSound" src="sounds/spinwheel.mp3"> </audio>
<div id=ground>
<img id=morty src="images/morty.png" alt="">
<img id=groundimg src="images/ground.png" alt="">
</div>
<img id="portal" src="images/Portal.png" height="300" width="200">
</div>
<div id = credits>
<h4>Members:</h4>
<h5>Kathryna</h5>
<h5>Yashadii</h5>
<h5>Chatasia(Tay)</h5>
</div>
<script src="script.js">
</script>
</body>
</html>