-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex32.html
47 lines (47 loc) · 1.69 KB
/
index32.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>Горячие клавиши</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.gstatic.com/%22%3E" />
<link
href="https://fonts.googleapis.com/css2?family=Poiret+One&display=swap"
rel="stylesheet"
/>
<script src="js/index.js" defer></script>
<link rel="manifest" href="manifest.webmanifest" />
</head>
<body class="flex-game">
<div class="hint" id="hi">
<div class="but">
<a href="game.html"
><button class="one floating-button">Меню</button></a
>
<a href="menu.html"
><button class="two floating-button">Обучение</button></a
>
</div>
<p class="pod modal-window-close">Alt + F6</p>
<button class="floating-button">Подсказка</button>
</div>
<div class="cent">
<h1 class="cen">
Какое сочетание клавиш используются для переключения между несколькими
окнами одной программы (например, между открытыми окнами WinWord)?
Нажмите эти клавиши на вашей клавиатуре.
</h1>
</div>
<script src="js/jquery-3.3.1.js"></script>
<script src="js/shortcut.js"></script>
<script>
shortcut.add("alt+f6", function () {
document.location.href = "index33.1.html";
});
$("#hi").on("click", function () {
$(".pod").removeClass("modal-window-close");
$("div.pod").addClass("is-open");
});
</script>
</body>
</html>