-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
33 lines (30 loc) · 1.18 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
33
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<title>Logic game</title>
<link href="css/styles.css" rel="stylesheet" />
<script type="text/javascript" src="logic-game.js"></script>
</head>
<body onload="drawLevelDOM('3 x 3',0)">
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-lg-4">
</div>
<div class="col-sm-6 col-lg-4 text-center">
<h5 id="currentLevel" class="text-left pt-3"></h5>
<h5 id="timer" class="text-left text-info"></h5>
<h4 class="mb-5 pt-3">Current Formula: <span id="formulaDisplay"></span></h4>
<h5 id='solution'></h5>
<div id='fields'>
</div>
<h4 class="pt-3">Click on every field that satisfies current formula.</h4>
</div>
<div class="col-sm-3 col-lg-4">
</div>
</div>
</div>
</body>
</html>