-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<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>Rock-Paper-Scissors</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="header">
<h1>ROCK PAPER SCISSORS</h1>
</div>
<div class="score-board">
<h2>PLAYER</h2>
<h2 id="player"></h2>
<h2>-</h2>
<h2 id="computer"></h2>
<h2>COMPUTER</h2>
</div>
<div class="score-board"><h2 id="text-content" style="font-size: 25px;font-family: 'Gill Sans';"></h2></div>
<div class="playagain-button-div"><a href="index.html"><button class="hidebutton buttonstyle">Play Again</button></a></div>
<div class="image_container">
<img class="button" src="images/20230601_201121.png" alt="ROCK">
<img class="button" src="images/20230601_201332.png" alt="PAPER">
<img class="button" src="images/20230601_201303.png" alt="SCISSORS">
</div>
<script src="rock.js"></script>
</body>
</html>