-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (42 loc) · 2.51 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<!-- bootstrap links -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script>
</head>
<body>
<div class="first">
<div class="card" style="width: 18rem; border: none;">
<img id="first" src="https://www3.bostonglobe.com//rw/Boston/2011-2020/WebGraphics/Metro/BostonGlobe.com/2018/05/rockpaperscissors/assets/rock--left.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Rock</h5>
<p class="card-text">If opponent chose paper or the opponent wins if opponent chooses scissor you win and rock is obviously a tie</p>
</div>
</div>
</div>
<div class="second">
<div class="card" style="width: 18rem; border: none;">
<img id="second" src="https://www3.bostonglobe.com//rw/Boston/2011-2020/WebGraphics/Metro/BostonGlobe.com/2018/05/rockpaperscissors/assets/scissors--left.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Scissor</h5>
<p class="card-text">If opponent choses paper you wins if opponent choses rock you lose and a scissor is a tie</p>
</div>
</div>
</div>
<div class="third">
<div class="card" style="width: 18rem; border: none;">
<img id="third" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEjyMFecj1quL7X6lCiyQsga2mM53KLmwB4R-AaDP_7cUjS1ECfjim7lzlavUWqyfpfDw&usqp=CAU" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Paper</h5>
<p class="card-text">If opponent choses scissor you lose and if opponent choses rock you wins and paper is a obvious tie</p>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>