forked from himaniagarwal04/spin-wheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (27 loc) · 854 Bytes
/
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
<html><head>
<title>Movie Selector</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<head></head>
<body>
<h1><center> Which movie should I watch? <br>
🧐🤔🧐</center><br>
<div id="mainbox" class="mainbox">
<div id="box" class="box">
<div class="box1">
<span class="span1"><b>Iron Man</b></span>
<span class="span2"><b>7500</b></span>
<span class="span3"><b>Bat Man</b></span>
<span class="span4"><b>Joker</b></span>
</div>
<div class="box2">
<span class="span1"><b>Shoplifters</b></span>
<span class="span2"><b>Inception</b></span>
<span class="span3"><b>Deadpool</b></span>
<span class="span4"><b>Terminator</b></span>
</div>
</div>
<button class="spin" onclick="myfunction()">SPIN</button>
</div>
<script src="script.js"></script>
</body>
</html>