-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·32 lines (32 loc) · 1.27 KB
/
index.html
File metadata and controls
executable file
·32 lines (32 loc) · 1.27 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Логические основы интеллектуальных систем</title>
<link rel="stylesheet" type="text/css" href="./styles/style.css" />
<link rel="stylesheet" type="text/css" href="./styles/menuStyle.css" />
</head>
<script src="./scripts/scriptWorkWithFormula.js"></script>
<script src="./scripts/tableTruth.js"></script>
<script src="./scripts/scriptOperation.js"></script>
<body>
<ul>
<li><a href="index.html">Главная</a></li>
<li><a href="test.html">Тесты</a></li>
</ul>
<div class="center">
<h3>Найти количество подформул</h3>
<input id="inputFormula" type="text" name="inputFormula">
<a class="button" id="button" onclick="clickCheckFormula()">Проверить формулу</a>
</input>
<div class="output" id="output"></div>
<div id="hiddenForm" hidden>
<h3>Таблица истинности</h3>
<table border="1">
<tbody id="tbody"></tbody>
</table>
<div class="outputTypeFormula" id="outputTypeFormula"></div>
</div>
</div>
</body>
</html>