-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 965 Bytes
/
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css" />
<title>Leggo</title>
</head>
<body>
<div class="container-1">
<img id="back" src="images/e5353c8bfe795ec883e5b3d7413ecb2562735884_hq.jpg" height=600 width=600 alt="">
<div class="flex-box-rps" id="flex-box-rps-div">
<div class="div-1">
<img id="rock" src="images/bulb1.png" height=150 width=500 alt="" onclick="rpsGame(this)">
</div>
<div class="div-2">
<img id="paper" src="images/char1.png" height=150 width=500 onclick= "rpsGame(this)">
</div>
<div class="div-3">
<img id="scissors" src="images/squr1.png" height=150 width=500 alt="" onclick="rpsGame(this)">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>