diff options
author | cyfraeviolae <cyfraeviolae> | 2023-11-19 15:47:12 -0500 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2023-11-19 15:47:12 -0500 |
commit | 02b99889178b5f7b1c54437e8f7f9d13d6b8da08 (patch) | |
tree | e31d3fbfb630e62143cc04e97fdd5cacf4c4d8a8 /index.html |
init
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..6379845 --- /dev/null +++ b/index.html @@ -0,0 +1,48 @@ +<!DOCTYPE html> +<html> + <head> + <title>Infinite Connections</title> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" type="text/css" href="/static/styles.css"> + <link rel="stylesheet" type="text/css" href="/infinite-connections/static/styles.css"> + <link rel="shortcut icon" type="image/x-icon" href="/infinite-connections/static/favicon.ico"> + </head> + <body> + <div class="container"> + <div> + <div class="home"> + <a href="/infinite-connections" class="home-title">Infinite Connections</a> + <span> at </span><a href="/">cyfraeviolae.org</a> + </div> + <div class="crumbs"> + <a href="/git/infinite-connections">source code</a> + </div> + </div> + <p> + The interlacing-interweaving sorcerer Roseacrucis has deranged the + Library’s collated collections. You must identify the four + hidden groups…but the task appears Sisyphean… + </p> + <noscript>Sorry, JavaScript is required to run Infinite Connections.</noscript> + <br> + <div> + <div> + <button id="new-board">New game</button> + <button id="clear">Clear</button> + <button id="give-up">Give up</button> + <button id="reset">Reset</button> + <button id="copy-link">Copy link</button> + <input id="url" type="text"></input> + </div> + </div> + <br> + <div id="game"> + <div id="answers"></div> + <div id="board"></div> + </div> + </div> + <script src="/infinite-connections/static/corpus.js"></script> + <script src="/infinite-connections/static/script.js"></script> + </body> +</html> |