-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 881 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RPS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="d1">
<h1>Hello guys</h1>
<h2>This is a rock paper secissor game</h2>
<p>pick one of these buttons </p>
<button class="b1 button" id="rock"><span>R</span><span>O</span><span>C</span><span>K</span></button><br>
<button class="b1 button" id="paper"><span>P</span><span>A</span><span>P</span><span>E</span><span>R</span></button><br>
<button class="b1 button" id="secissor"><span>S</span><span>E</span><span>C</span><span>I</span><span>S</span><span>S</span><span>E</span><span>R</span></button><br>
<p id="op">you won the game</p>
<script src="script.js"></script>
</div>
</body>
</html>