-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (41 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissor</title>
<link rel="stylesheet" href="C:\Users\adi22\OneDrive\Desktop\DEV\CSS SHARDHA DI\Stone Paper Scissor\style.css">
</head >
<body>
<div id="header">
<h2 style="margin-top:0;">
Rock Paper Scissor</h2>
</div>
<div id="pics">
<div id="pic1" class="pics" >
<img style="margin-left: 350px;" src="pics/paper.png">
</div>
<div id="pic2" class="pics">
<img src="pics/rock.png" style="margin-left: 10px;">
</div>
<div id="pic3" class="pics">
<img src="pics/scissors.png" style="margin-left: 10px;">
</div>
</div>
<div id="Result" style="display: flex; justify-content: center;">
<div class="Result">
<h4>You
</h4>
<div id="Result_You">0</div>
</div>
<div class="Result">
<h4>Computer</h4>
<div id="Result_comp">0</div>
</div>
</div>
<div id="Result2">
<h4>Choose your option</h4>
</div>
<script src="C:\Users\adi22\OneDrive\Desktop\DEV\CSS SHARDHA DI\Stone Paper Scissor\script.js"></script>
</body>
</html>