forked from freyxfi/AllInHacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 880 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
27
28
29
30
31
32
33
34
35
<!doctype html>
<html>
<head>
<title> Hacktoberfest 2022 </title>
</head>
<body>
<img style="height: 150px" src="img/hacktoberfest-22.png" />
<h1>Rock Paper Scissors</h1>
<p>This is a command-line interface to play the best game of all time: Rock, Paper, Scissors.</p>
<h2>Rules of the Game</h2>
<p>
<li>Rock wins against scissors.</li>
<li>Scissors win against paper.</li>
<li>Paper wins against rock.</li>
</p>
<h2>How to play</h2>
<p>
<li>
Clone the project. It's available on
<a href="https://github.com/LastDeadlock/hacktoberfest" target="_blank">GitHub</a>.
</li>
<li>
Run with: python rockpaperscissor.py
</li>
<li>
Follow the prompts. <br/>
0 = Rock <br/>
1 = Paper <br/>
2 = Scissors
</li>
</p>
</body>
</html>