-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Hangman Game to the Website , Add SWOC labels to this PR @dhairyagothi Screenrecording : https://github.com/user-attachments/assets/6ceebe3a-56d7-45bf-bda8-f94c045ffcc9
- Loading branch information
Showing
13 changed files
with
737 additions
and
68 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Hangman Game</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="scripts/word-list.js" defer></script> | ||
<script src="script.js" defer></script> | ||
</head> | ||
<body> | ||
<h1>Hangman Game</h1> | ||
<div class="game-modal"> | ||
<div class="content"> | ||
<img src="#" alt="Game Over Animation"> | ||
<h4>Game Over!</h4> | ||
<p>The correct word was: <b>rainbow</b></p> | ||
<button class="play-again">Play Again</button> | ||
</div> | ||
</div> | ||
<div class="container"> | ||
<div class="hangman-box"> | ||
<img src="#" draggable="false" alt="Hangman Image"> | ||
<h1>Hangman Game</h1> | ||
</div> | ||
<div class="game-box"> | ||
<ul class="word-display"></ul> | ||
<h4 class="hint-text">Hint: <b></b></h4> | ||
<h4 class="guesses-text">Incorrect guesses: <b></b></h4> | ||
<div class="keyboard"></div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.