Files
destruction-of-legacy/index.html
2023-05-27 21:55:52 +02:00

28 lines
960 B
HTML

<!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">
<link rel="stylesheet" href="text_horror/style.css">
<script src="text_horror/app.js"></script>
<title>TextHorror</title>
</head>
<body onpageshow="load()">
<div id="bubble" onclick="nextDlg()">
<p id="title"></p>
<p id="dlg-text"></p>
</div>
<div hidden="true" id="answer-box">
<p class="answer" id="0" onclick="answered(this.id)"></p>
<p class="answer" id="1" onclick="answered(this.id)"></p>
<p class="answer" id="2" onclick="answered(this.id)"></p>
<p class="answer" id="3" onclick="answered(this.id)"></p>
</div>
<img draggable="false" hidden="true" id="triangle" src="text_horror/assets/triangle.png">
<p class="thx-for-playing">Thanks for playing</p>
</body>
</html>