-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Football's Standing</title>
<meta name="description" content="Football App" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/materialize.min.css">
<link rel="manifest" href="/manifest.json" />
<link rel="stylesheet" href="/css/style.css">
<meta name="theme-color" content="#546e7a" />
</head>
<body>
<nav class="blue-grey darken-1" role="navigation">
<div class="nav-wrapper container">
<a href="#" class="brand-logo" id="logo-container"><img class="image_logo responsive-img"
src="/images/2015.png"></a>
<a href="#" class="sidenav-trigger" data-target="nav-mobile">☰</a>
<ul class="topnav right hide-on-med-and-down"></ul>
<ul class="sidenav" id="nav-mobile"></ul>
</div>
</nav>
<div class="container" id="body-content"></div>
<script src="js/materialize.min.js"></script>
<script src="js/nav.js"></script>
<script src="js/api.js"></script>
<script src="js/idb.js"></script>
<script src="js/db.js"></script>
<script src="./js/checkservice.js"></script>
<script>
getStandingsClub();
</script>
</body>
<footer class="page-footern blue-grey darken-1 " class="page-footer" style="position:fixed;bottom:0;left:0;width:100%;">
<div class="footer-copyright">
<div class="container center">
© 2020 Copyright
</div>
</div>
</footer>
</html>