| <!DOCTYPE html> |
| <html lang="en"> |
|
|
| <head> |
| <meta charset="UTF-8"> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Jogo da forca</title> |
| <link rel="stylesheet" href="style.css"> |
| </head> |
|
|
| <body> |
| <header> |
| <h1>Jogo da Forca</h1> |
| </header> |
| <button class="new">Novo Jogo</button> |
| <main> |
| <article class="content-img"> |
| <img src="img1.png" width="250px" alt="Jogo da forca"> |
| </article> |
| <article class="content"> |
| <div class="guess-word"></div> |
| <div class="clue"></div> |
| <div class="btns"></div> |
| </article> |
| </main> |
|
|
| <a href="./hangman-game.zip" target="_blank" title="baixar code" style="position: fixed;bottom: 20px; right: 20px;"> |
| <img src="https://www.svgrepo.com/show/528180/code-circle.svg" alt="code" width="60"> |
| </a> |
|
|
| <script src="script.js" type="module"></script> |
| </body> |
|
|
| </html> |