diff options
author | cyfraeviolae <sy@sibylantgraze.localdomain> | 2024-01-19 14:56:15 -0500 |
---|---|---|
committer | cyfraeviolae <sy@sibylantgraze.localdomain> | 2024-01-19 14:56:15 -0500 |
commit | 16db2016395eab93300cd0afa7e420636362acc8 (patch) | |
tree | 1cf34d19817af8fd806b086d455a59a63fbac4a8 /index.html |
init
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..35f113a --- /dev/null +++ b/index.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html> + <head> + <title>Countervisual</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="/countervisual/static/styles.css"> + <link rel="shortcut icon" type="image/x-icon" href="/countervisual/static/favicon.ico"> + </head> + <body> + <div class="container"> + <div> + <div class="home"> + <a href="/countervisual" class="home-title">Countervisual</a> + <span> at </span><a class="site" href="/">cyfraeviolae.org</a> + <a class="source" href="/git/countervisual">[src]</a> + </div> + </div> + <p> + The phantasmagoric sorcerer Roseacrucis has bewitched + the Library’s revered fine arts collection: each + painting’s color has been randomized. Your task is to recover + the originals. + </p> + <noscript>Sorry, JavaScript is required to play Countervisual.</noscript> + <br> + <button id="random-novice">Novice</button> + <button id="random-intermediate">Intermediate</button> + <button id="random-expert">Expert</button> + <button id="reset">Reset</button> + <button id="copy">Copy link</button> + <div id="gameboard"> + <div class="wrapper"> + <figure id="question"></figure> + <figure id="answer"></figure> + </div> + <div id="sliders"></div> + <br> + <button id="score-game" href="#">Score</button> + <div id="scoring"></div> + </div> + </div> + <script src="/countervisual/static/works.js"></script> + <script src="/countervisual/static/artists.js"></script> + <script src="/countervisual/static/manifest.js"></script> + <script src="/countervisual/static/script.js"></script> + </body> +</html> + |