-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 loc) · 2.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta
name="description"
content="This website was created by Galih Permana. An freshman, intuitive, creative, and hard worker person. Frontend enthusiast, networking enthusiast, and many more. This project will be submit as submission on Dicoding Progressive Web Apps course.
Todo list is application that can you used to listing what will you do, today, tomorrow, next week or next month. The purposes of this app is that user can notice her activity or something that can he/she going to do with reducing the forget behavior."
/>
<title>What a Goal</title>
<link rel="stylesheet" href="./css/materialize.min.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/ucl.css" />
<!-- MANIFEST -->
<link rel="manifest" href="./manifest.json" />
<!-- ios support -->
<link rel="apple-touch-icon" href="/img/icons/96.png" />
<meta name="apple-mobile-web-app-status-bar" content="#1a237e" />
<meta name="theme-color" content="#1a237e" />
<link rel="preconnect" href="https://crests.football-data.org">
<link rel="preconnect" href="hhttps://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.googleapis.com">
</head>
<body>
<!-- NAVBAR -->
<nav class="indigo darken-4">
<div class="nav-wrapper container">
<a href="./index.html" class="brand-logo left">What a Goal</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="./index.html">Champions League</a></li>
<li><a href="./pages/pl.html">Premier League</a></li>
<li><a href="./pages/list.html">My List</a></li>
<li><a href="./pages/about.html">About</a></li>
</ul>
<a href="#" data-target="mobile-nav" class="sidenav-trigger right">
<i class="large material-icons">dehaze</i>
</a>
<ul class="sidenav" id="mobile-nav">
<li><a href="./index.html">Champions League</a></li>
<li><a href="./pages/pl.html">Premier League</a></li>
<li><a href="./pages/list.html">My List</a></li>
<li><a href="./pages/about.html">About</a></li>
</ul>
<div class="progress blue lighten-4">
<div class="indeterminate blue lighten-1"></div>
</div>
</div>
</nav>
<!-- END OF NAVBAR -->
<!-- BODY -->
<div class="container" id="body-content-1">
</div>
<!-- END OF BODY -->
<script src="./js/registersw.js"></script>
<!-- <script src="./js/push.js"></script> -->
<script src="./js/api.js"></script>
<script src="./js/materialize.min.js"></script>
<script src="./js/setup.js"></script>
</body>
</html>