-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (41 loc) · 1.82 KB
/
index.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
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Servus</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="./Css/Style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.7.2/css/all.min.css">
</head>
<body>
<div id="house" class="card">
<div id="Kitchen" class="room">
<span class="badge badge-primary">Kitchen</span>
<div class="table" id="K">
</div>
<i class="fas fa-robot" id="servus"></i>
</div>
<div class="room">
<span class="badge badge-primary">Living Room</span>
<div class="table" id="T1">
</div>
<div class="table" id="T2">
</div>
</div>
<span id="console"></span><br>
<span id="state"></span>
<button id="go" class="btn btn-success">
Start !
</button>
<img src="https://github.com/ErikV88/JS-Servus-Planning-Robot/blob/main/Images/empty-glass-outline.png?raw=true" style="display:none;" />
<img src="https://github.com/ErikV88/JS-Servus-Planning-Robot/blob/main/Images/empty-glass-w.png?raw=true" style="display:none;" />
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin="anonymous"></script>
<script src="./Scripts/Queue.js"></script>
<script src="./Scripts/Helpers.js"></script>
<script src="./Scripts/ServusState.js"></script>
<script src="./Scripts/ServusSpace.js"></script>
<script src="./Scripts/ServusUI.js"></script>
<script src="./Scripts/Main.js"></script>
</body>
</html>