-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (54 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<title>MEMORY GAME</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin>
<link rel="stylesheet" href=index.css>
</head>
<body>
<div class="fullbox">
<div class="row ">
<div class="col d-flex justify-content-center">
<h1 id="title">Press <span class="badge badge-secondary" id="s">S</span> To Start The Game</h1>
</div>
</div>
<hr>
<div class="containe my-4">
<div class="row my">
<div class="col-6 "><a class=" bt button-blue " id="blue" style="float: right;"></a></div>
<div class="col-xm-6"><a class="bt button-red" id="red"></a></div>
</div>
<br>
<div class="row ">
<div class="col-6"><a class="bt button-yellow " id="yellow" style="float: right;"></a></div>
<div class="col-xs-6"><a class="bt button-green" id="green"></a></div>
</div>
</div>
<div class="show ">
<div class="row d-flex justify-content-center">
<h2 id="score">Your Highest Score is</h2>
</div>
</div>
</div>
<div class="fullbox">
<div class="row">
<div class="col">
<div id="ruless" >
<strong><h2>Rules !!</h2> </strong> <h2>(Remember order of color)</h2>
<button id="close-rule" onclick="close()" >✖</button>
</div>
</div>
</div>
</div>
<hr>
<div class="fullbox">
<div class="row">
<div class="col d-flex justify-content-center">
<h3> Made By <b style="padding-left:5px; padding-right:5px;"> Sourabh
</h3> </div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
<script src="index.js"></script>
</body>
</html>