3Dstudy/snake.html

53 lines
2.0 KiB
HTML
Raw Normal View History

2018-01-10 02:07:28 +01:00
<!DOCTYPE html>
<html>
2017-12-19 11:27:17 +01:00
2018-01-10 02:07:28 +01:00
<head>
<title> Snake Game </title>
<link rel="stylesheet" href="snake.css">
2017-12-19 11:27:17 +01:00
</head>
<body>
2018-01-10 02:07:28 +01:00
<div id="container">
<button id="add_question">AddQuestion</button>
<form id='popup_question'>
<input type="text" name="question" placeholder="Podaj pytanie"><br>
2018-01-10 13:06:49 +01:00
<input type="text" name="answer1" placeholder="Podaj odpowiedz 1"><br>
<input type="text" name="answer2" placeholder="Podaj odpowiedz 2"><br>
<input type="text" name="answer3" placeholder="Podaj odpowiedz 3"><br>
2018-01-10 02:07:28 +01:00
<input type="text" name="answer4" placeholder="Podaj odpowiedz 4"><br>
<button id="send_question" type="submit">Wyslij</button>
</form>
<div id="popup">
Odpowiedz na pytanie!
<br>
2018-01-10 13:06:49 +01:00
<p>Czy lubisz jablka?</p>
2018-01-16 15:35:05 +01:00
<input class="yes" type="radio" value="option1" name="yes_no">odpowiedz1<br>
<input class="no" type="radio" value="option2" name="yes_no">odpowiedz2<br>
2018-01-10 02:07:28 +01:00
<a type="submit" value="submit">
<span id="correct">To jest dobra odpowiedz,<br> mozesz grac dalej!</span><br>
<!-- <button id="continue_game">Ruszaj dalej!</button> -->
2018-01-10 13:06:49 +01:00
<div id="incorrect">To jest zla odpowiedz!Przegrales!<br>
2018-01-10 02:07:28 +01:00
Twoj wynik to: <span id="final"></span>
</div>
<br>
<a id="#restart" onClick="window.location.reload()" href="#">Click To Play Again</a>
</div>
2018-01-10 13:06:49 +01:00
<canvas id="myCanvas" width="600" height="450">
2018-01-10 02:07:28 +01:00
Your browser does not support the canvas feature
</canvas>
<div id="score">
2018-01-16 15:35:05 +01:00
<div>Session Score:<span id="session">0</span>&#47<span id="question_couter">0</span>
2018-01-10 02:07:28 +01:00
</div>
</div>
</div>
<!-- jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<!-- Main JS -->
<script src="js/snake.js"></script>
2017-12-19 11:27:17 +01:00
</body>
2018-01-10 02:07:28 +01:00
</html>