forked from UNICT-DMI/OPIS-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (29 loc) · 858 Bytes
/
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
<!doctype html>
<html>
<head>
<title>OPIS Manager</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- javascript libraries -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<br>
<h2 class="text-center text-success">Opis Manager</h2>
<br>
<div class="row">
<div class="col text-center">
<select id="dipartimenti" class="btn btn-success">
<option>--</option>
</select>
</div>
</div>
</div>
<script src="js/core.js"></script>
</body>
</html>