UNPKG

@pasciaks/lostwords-org-library

Version:

Lostwords.org - Word search generator and function library.

39 lines 984 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Lostwords.org</title> <style> body { text-align: center; margin: 0; padding: 0; } #puzzle-ascii { font-family: monospace; font-size: 1.5em; white-space: pre; } </style> </head> <body> <section> <h2>Puzzle Generating example</h2> </section> <section> <button id="generate-button">Generate</button> <pre id="puzzle-ascii"></pre> </section> <section> <h2>Word Path Generating example</h2> </section> <section> <label for="the-word">Input</label> <input id="the-word" value="lostwords" type="text"/> <button id="create-paths-button">Create Paths</button> </section> <pre id="paths-found"></pre> <script type="module" src="lwl.js"></script> </body> </html>