diff options
author | Aki <please@ignore.pl> | 2024-07-14 22:24:18 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-07-14 23:05:47 +0200 |
commit | dd6649ee2d7f80c4a46262de8ef840e6abf2393b (patch) | |
tree | 4ed23f2f636a03b963996e7fa0c4d098516f3deb /index.html | |
download | cards-master.zip cards-master.tar.gz cards-master.tar.bz2 |
The form is not a form and it does not work for obvious reasons. This
could be implemented all in SVG, HTML, JavaScript, or have some actual
backend to generate questions and gather answers to get proper
statistics.
This is intended to recreate experiment performed for "On the
Perception of Incongruity: A Paradigm" [[1949 Bruner and Postman]] as
briefly explained in "The Structure of Scientific Revolutions" [[1962
Kuhn]].
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..bab0463 --- /dev/null +++ b/index.html @@ -0,0 +1,11 @@ +<!doctype html> +<html lang="en"> +<meta charset="utf-8"> +<link rel="stylesheet" href="style.css"> +<title>What Is This Card?</title> +<main> +<h1>What Is This Card?</h1> +<object type="image/svg+xml" data="card.svg"></object> +<p>Answer the question in the shortest exposition time.<br>Click the card to flip it.</p> +<label for="answer">This card is </label><input id="answer" type="text" autofocus><input type="submit" value="→"> +</main> |