-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (22 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.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.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="styling.css">
<title>RockPaperSeassors</title>
</head>
<body class="mainBody">
<div class="center" >
<button type="button"class="btn btn-primary" id="rules" data-toggle="collapse" data-target="#collapseInfo">RULES</button>
<div id="collapseInfo" class="collapse">An easily memorised rule determines the winner: “Rock breaks scissors, scissors cuts paper, paper covers rock.” In other words, a player who chooses rock beats one who chooses scissors; scissors in turn beats paper; paper beats rock. This yields a winner whenever the two players choose differently.</div>
</div>
<div class="selectType">
<a href="easy.html" ><button type="button" class="btn btn-success" >EasyPasy</button></a>
<a href="impossible.html"><button type="button" class="btn btn-danger">Can't Beat</button></a>
</div>
</body>
</html>