# bible-guess-game

## Installation

```
npm i bible-book-guess-game
```

Then in your index.html:
```
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Bible Guessing Game</title>
    <link rel="icon" type="image/svg+xml" href="/bible.svg" />
    <script type="module" src="./bible-book-guess-game.js"></script>
  </head>
  <body style="background-color: #2a1f14;">
    <bible-guess-game></bible-guess-game>
  </body>
</html>
```
make sure you have the right path of both /bible.svg and ./bible-book-guess-game.js
