-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (37 loc) · 1.9 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ordomatic</title>
<link rel="icon" href="static/img/ordomatic.png">
<link rel="stylesheet" href="static/vendors/bootstrap-5.2.3-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="static/vendors/fontawesome-free-6.3.0-web/css/all.min.css">
<link rel="stylesheet" href="static/css/colors.css">
<link rel="stylesheet" href="static/css/ordomatic.css">
<style>@font-face{font-family: "LucidaHW"; src: url("static/fonts/TR Lucida Handwriting Italic.ttf")}</style>
<style>@font-face{font-family: "FlavGaramond"; src: url("static/fonts/FlavGaramondRegular.ttf")}</style>
<style>@font-face{font-family: "GregPlantin"; src: url("static/fonts/GregPlantin-Regular.ttf")}</style>
</head>
<body>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark sticky-top">
<div id="nav" class="col-11">
<span id="logo" class="fas fa-frog green mx-2"></span>
<span id="title" class="orange my-0">Ordomatic</span>
</div>
<div class="col-1 pe-3">
<input id="select_year" type="number" class="col-2 form-control form-control-sm">
</div>
</nav>
<div id="ordo" class="d-flex flex-column align-items-center">
</div>
</body>
<script src="static/vendors/jquery-3.6.0.min.js"></script>
<script src="static/vendors/bootstrap-5.2.3-dist/js/bootstrap.bundle.min.js"></script>
<script src="static/vendors/fontawesome-free-6.3.0-web/js/all.min.js"></script>
<script src="static/js/data_tempo.js"></script>
<script src="static/js/data_sancto.js"></script>
<script src="static/js/functions.js"></script>
<script src="static/js/refresh.js"></script>
<script src="static/js/replace.js"></script>
<script src="static/js/ordomatic.js"></script>
</html>