-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (141 loc) · 5.13 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- FAVICON CODE -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- meta data -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- style CODE -->
<link rel="stylesheet" href="resources/CSS/style.css" />
<link rel="stylesheet" href="resources/CSS/grid.css" />
<!-- <link rel="stylesheet" href="resources/CSS/normalize.css" /> -->
<title>Rock Paper Scissors Lizard Spock </title>
</head>
<body>
<header>
<button
type="button"
class="infobtn bg-light "
data-toggle="modal"
data-target="#secModal"
>
CONTRIBUTERS
</button>
<div class="modal fade" id="secModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true" >
<div class="modal-dialog ">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h2 class="modal-title w-100 text-center">Contributers</h2>
</div>
<!-- Modal body -->
<div class="modal-body">
<p class="info">
<ul>
<u>
<li><b>SHORAY SINGHAL</b></li>
<li>ANJALI CHAUDHARY</li>
<li>RISHI RAJ</li>
<li>DEEPANSHU GERA </li>
<li>NISCHAL GOEL</li></u>
</ul>
</p>
</div>
<!-- Modal footer-->
<div class="modal-footer">
<button type="button " class="close btn w-100 text-center " data-dismiss="modal">
OK
</button>
</div>
</div>
</div>
</div>
<h1>Rock — Paper — Scissors — Lizard — Spock </h1>
</header>
<div class="row start-img">
<img
src="resources/images/rock.png "
alt="rock"
class="col span-1-of-5 box"
/>
<img
src="resources/images/paper.png "
alt="rock"
class="col span-1-of-5 box"
/>
<img
src="resources/images/scissors.png "
alt="rock"
class="col span-1-of-5 box"
/>
<img
src="resources/images/lizard.png "
alt="rock"
class="col span-1-of-5 box"
/>
<img
src="resources/images/spock.png "
alt="rock"
class="col span-1-of-5 box"
/>
</div>
<main>
<div class="container">
<a href="/new.html"><button class="btn" ><span>START</span></button></a>
<!-- Button to Open the Modal -->
<button
type="button left"
class="btn btn-primary right bg-primary text-white"
data-toggle="modal"
data-target="#myModal"
>
RULES
</button>
<!-- The Modal -->
<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h2 class="modal-title w-100 text-center">Rules of the Game</h2>
</div>
<!-- Modal body -->
<div class="modal-body">
<p>
Scissors cuts paper, paper covers rock, rock crushes lizard,
lizard poisons Spock, Spock smashes scissors, scissors
decapitates lizard, lizard eats paper, paper disproves Spock,
Spock vaporizes rock, and as it always has, rock crushes
scissors.
<img
src="resources/images/pngwing.com.png"
alt="rules"
class="rules"
/>
</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="close btn w-100 text-center" data-dismiss="modal">
GOT IT!
</button>
</div>
</div>
</div>
</div>
</div>
<!-- <script src="resources/JS/script.js"></script> -->
</body>
</html>