Newer
Older
escapegame-2022 / yuto / entrance / entrance.html
@Yuto Togashi Yuto Togashi on 14 Jun 2022 2 KB fix source of image
<!DOCTYPE html>
<html>
<head>
<title>庄内AR謎解きゲーム(仮)</title>
<link rel="stylesheet" type="text/css" href="escape.css">
</head>

<body>

<h1>庄内AR謎解きゲーム(仮)</h1>
<p>「謎解きって何?」「脱出ゲームとは?」という方に向けて、お試し謎を作成したのでぜひ解いてみてください!</p>
<p>※解答はひらがなで入力すること。</p>

<form method="POST" action="./judge.rb">
<h2>謎1</h2>
<img src="../picture/question1.png" alt="謎1" width="600" height="450"><br>
<input type="text" name="ans1" placeholder="謎1の答えを入力" maxlength="10">
<input name="ok" type="submit" value="送信">
</form>

<form method="POST" action="./judge.rb">
<h2>謎2</h2>
<img src="../picture/question2.png" alt="謎2" width="600" height="450"><br>
<input type="text" name="ans2" placeholder="謎2の答えを入力" maxlength="10">
<input name="ok" type="submit" value="送信">
</form>

<form method="POST" action="./judge.rb">
<h2>謎3</h2>
<img src="../picture/question3.png" alt="謎3" width="600" height="450"><br>
<input type="text" name="ans3" placeholder="謎3の答えを入力" maxlength="10">
<input name="ok" type="submit" value="送信">
</form>

<form method="POST" action="./judge.rb">
<h2>謎4</h2>
<img src="../picture/question4.png" alt="謎4" width="600" height="450"><br>
<input type="text" name="ans4" placeholder="謎4の答えを入力" maxlength="10">
<input name="ok" type="submit" value="送信">
</form>

<form method="POST" action="./judge.rb">
<h2>謎5</h2>
<img src="../picture/question5.png" alt="謎5" width="600" height="450"><br>
<input type="text" name="ans5" placeholder="謎5の答えを入力" maxlength="10">
<input name="ok" type="submit" value="送信">
</form>

<form method="POST" action="./judge.rb">
<h2>EXTRA</h2>
<img src="../picture/extra.png" alt="EXTRA" width="600" height="450"><br>
<input type="text" name="ans6" placeholder="EXTRAの答えを入力" maxlength="10">
<input name="ok" type="submit" value="送信">
</form>

<p></p>
<hr>
<p><a href="explain.html">具体的説明はこちら</a></p>

</body>
</html>