-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (28 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Rock Paper Scissors </title>
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css'>
<link rel='stylesheet' href='style.css'>
</head>
<body>
<div class="container">
<div class="fresult">
<h1 class="display-1">Lets Play</h1>
</div>
<div class="result">
</div>
<div class="main">
<a id="scissors" class="btn"><img src="/src/scissors.png" alt="" class="img" id="scissorss"></a>
<a id="paper" class="btn" ><img src="/src/peper.png" class="img" id="paperr" ></a>
<a id="rock" class="btn"><img src="/src/rock.png" alt="" class="img" id="rockk"></a>
</div>
</div>
<script src='https://code.jquery.com/jquery-3.3.1.js'integrity='sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60='crossorigin='anonymous'></script>
<script src='https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js'></script>
<script src='main.js'></script>
</body>
</html>