forked from freyxfi/AllInHacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (151 loc) · 4.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!doctype html>
<html>
<head>
<title>
Hacktoberfest 2022
</title>
<link rel="stylesheet" href="style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Piedra&display=swap');
</style>
</head>
<body
style="
background-color: black;
text-align: center;
list-style: none;
width: 98vw;
height: 97vh;
font-size: 150%;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: whitesmoke;
background-image: url(./img/bg.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
"
>
<img
style="background-color : wheat; border-radius: 20px; height: 15%;"
src="img/hacktoberfest-22.png"/>
<h1
text-align:="text-align:"
center;="center;"
font-weight:="font-weight:"
bold;="bold;"
style="
color : red;
font-size : 200%;
text-transform: uppercase;
text-decoration: underline;
font-family: 'Piedra', cursive;
"
>
ROCK PAPER SCISSORS
</h1>
<p
text-align:="text-align:"
center;="center;"
font-weight:="font-weight:"
bold;="bold;"
style = "
width: auto;
height: fit-content;
">
This is a command-line interface to play the best game of all time: Rock, Paper, Scissors.
</p>
<h2 style="text-transform: uppercase;color : red; ">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 style="text-transform: uppercase;color : red;">How to play</h2>
<p>
<li>
Clone the project. It's available on
<a href="https://github.com/LastDeadlock/hacktoberfest" target="_blank" style = "color : burlywood;">GitHub</a>.
</li>
<li>
<span style="color : greenyellow; font-size: 130%;">Run with: python rockpaperscissor.py </span>
<p>
Follow the prompts.
</p>
</li>
<section style="display: flex; justify-content: center; gap: 20px; width: 100%; height: fit-content;">
<li
style="
display: grid-row;
color: black;
font-weight: bolder;
">
<p
style="
border: 1px solid black;
background-color: burlywood;
width: 100%;
padding: 4px;
border-radius: 5px;
">
0
</p>
<p
style="
border: 1px solid black;
background-color: burlywood;
width: 100%;
border-radius: 5px;
padding: 4px;
margin-bottom: 0px;">
1
</p>
<p
style="
border: 1px solid black;
background-color: burlywood;
width: 100%;
border-radius: 5px;
padding: 4px;
margin-bottom: 0px;">
2
</p>
</li>
<li
style="
display: grid-row;
color: black;
font-weight: bolder;
">
<p
style="
border: 1px solid black;
background-color: violet;
width: 100%;
padding: 4px;
border-radius: 5px;
">
Rock
</p>
<p
style="
border: 1px solid black;
background-color: violet;
width: 100%;
border-radius: 5px;
padding: 4px;">
Paper
</p>
<p
style="
border: 1px solid black;
background-color: violet;
width: 100%;
border-radius: 5px;
padding: 4px;">
Scissors
</p>
</li>
</section>
</p>
</body>
</html>