Skip to content

Commit

Permalink
Merge pull request #5 from ketan270/master
Browse files Browse the repository at this point in the history
Hangman game using backend
  • Loading branch information
ketan270 authored Apr 17, 2024
2 parents 1488f9b + 3932573 commit 7076891
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 6 deletions.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
![Logo](https://github.com/ketan270/HANGMAN-GAME/assets/146920220/cad0c84a-2ecd-4242-8343-44be311bc791)


## How To Play

- Clone or download the repository to your local machine.
- Open the project directory in your terminal or command prompt.
- Run the game using VS Code by executing hangman.html.
- Follow the on-screen instructions to guess letters and uncover the hidden word.

## Features

- `hangman.html`: Contains the main game logic and user interface.
- `README.md`: Information about the game and how to run it.

## Contributing

Contributions are always welcome!

If you'd like to `contribute` to this project, `fork` the repository, make your `changes`, and `submit` a pull request.

## License

This project is licensed under the [MIT](https://choosealicense.com/licenses/mit/) License. See the LICENSE file for detaill


## Acknowledgements

- Inspired by the classic Hangman game.
- Built for practicing HTML, CSS and Python programming.
- Thanks to contributors and supporters.
8 changes: 2 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ <h4 class="card-title">Login</h4>
</div>

<div class="form-group m-0">
<button type="submit" class="btn btn-primary btn-block">
<button type="button" class="btn btn-primary btn-block" onclick="window.location.href = 'index1.html';">
Login
</button>

</div>
<div class="mt-4 text-center">
Don't have an account? <a href="register.html">Create One</a>
Expand All @@ -77,11 +78,6 @@ <h4 class="card-title">Login</h4>


</script>



<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="js/my-login.js"></script>
</body>
Expand Down

0 comments on commit 7076891

Please sign in to comment.