-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lab5-thinking.php
34 lines (29 loc) · 1.19 KB
/
Lab5-thinking.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!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">
<title>Thinking</title>
<link href='https://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="./css/thinking.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<?php
include "menu.php";
?>
<h1>Thinking</h1>
<form id="form" class="form hidden">
<p style="text-align: center">Выберите недостающую часть:</p>
<img id="raven_img" alt="Shape">
<div class="ans hidden image-container"></div>
</form>
<div id="result" class="result hidden"></div>
<p style="color: #000000; text-align: center">Осталось примеров: <span id="tries">15</span></p>
<button type="button" class="start-button">Старт</button>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="./js/Lab5-thinking.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>