Gamified Activity Rock, Paper, Scissors Game: Bachelors of Computer Applications 4 Semester 2 Year (SESSION 2023-26)
Gamified Activity Rock, Paper, Scissors Game: Bachelors of Computer Applications 4 Semester 2 Year (SESSION 2023-26)
(SESSION 2023-26)
CODE:- (BCA-401)
HTML CODE
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div class="choices">
<p id="result"></p>
<script src="game.js"></script>
</body>
</html>
CSS CODE
body {
.choices
{ display: grid;
justify-content: center;
margin: 20px;
.choice:hover { background-
#result
{ margin-top:
20px; font-size:
24px; font-
weight: bold;
JAVASCRIPT CODE
function playGame(playerChoice) {
} else if (
){ result =
"You win!";
} else
{ result = "You
lose!";
OUTPUT