-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href='https://fonts.googleapis.com/css?family=Katibeh' rel='stylesheet'>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>RPS cats edition</title>
</head>
<body>
<div class="start">
<div class="title ">
<h1>Rock Paper scisors</h1>
<h2 class="cats">cats edtition</h2>
<button class="playBtn"><p>play</p></button>
</div>
<div class="bgPaws">
<img class="bgPaw" src="./images/bgPaw.svg" alt="">
<img class="bgPaw2" src="./images/bgPaw2.svg" alt="">
</div>
<div class="info">
<p class="player">you</p>
<h2 class="score">0-0</h2>
<p class="computer">enemy </p>
</div>
<div class=" choice ">
<img class="urchoice" src="./images/you/rock.svg" alt="">
<img class="cmpchoice" src="./images/enemy/rock.svg" alt="">
</div>
<h2 class="you"> <span class="result">?</span></h2>
<h2 class="finalResult">? </h2>
<button class="rePlayBtn"><p>play again !</p></button>
<div class="down">
<div class="action">
<button class="chrock">
<img style="width: 6em;" src="images/choice/rock.svg" alt="">
</button>
<button class="chpaper">
<img style="width: 6em;" src="images/choice/paper.svg" alt="">
</button>
<button class="chscisors">
<img style="width: 6em;" src="./images/choice/scisors.svg" alt="">
</button>
</div>
<img src="./images/Text.svg" class="text" alt="">
</div>
<div class="bg"></div>
</div>
<script>console.log("hello")</script>
<script src="script.js"></script>
</body>
</html>