-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (44 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
61 lines (44 loc) · 2.03 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors</title>
<link rel="stylesheet" href="RPS.css">
<script src="RPS.js" async></script>
</head>
<body>
<h1 class="titre">Rock Paper Scissors</h1>
<h1 class="player1"> player1</h1>
<div class="all">
<section class="imag " title="pierre"><div class="img content1"> </div> </section>
<section class="imag" title="papier" > <div class="img content2" ></div></section>
<section class="imag " title="ciseaux" > <div class="img content3" ></div></section>
</div>
<h2 class="vs"> <span style="font-size: 3.9rem;">V</span>s</h2>
<h1 class="player2"> Ia</h1>
<section class="place"><div class="imga ia iu"> </div> </section>
<div class="winer">
<p class="p"> </p>
</div>
<div class="bouton">
<button class="play play1 active" id="bouton" disabled> Play </button>
<div class="play2"><button class="play link"> Restart</button></div>
</div>
<h3 class="copyright"> © RPS game - by dev Judicael</h3>
<div class="info">
<div class="up">
<p class="upy"> Welcome on <br> <span class="style" style="font-weight: bold; font-size: 1.7rem; ">RPS game </span>
<br>
</p>
</div>
<div class="down">
<p class="lucky">Essayez de battre notre ia au jeu de pierre feuille ciseaux <br>
choisissez juste une option et cliquez sur <br> <span class="style" style=" font-weight: bold; border-bottom: 2px solid rebeccapurple;">Play</span>
<br><br>
Bonne chance !
</p>
</div>
</div>
</body>
</html>