-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathindex.html
59 lines (58 loc) · 1.64 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Cycle Tracker PWA</title>
</head>
<body>
<h1>CycleTracker Period tracker PWA progress</h1>
<p>
Tutorial:
<a
href="https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Tutorials/Intro/"
>CycleTracker: Creating your first PWA</a
>
</p>
<p>Tutorial demos:</p>
<ol>
<li><a href="html_and_css/index.html">HTML and CSS</a></li>
<li>Secure connection (no files)</li>
<li>
<a href="javascript_functionality/index.html"
>JavaScript functionality</a
>
</li>
<li><a href="manifest_file/index.html">Manifest file tutorial</a></li>
<li><a href="service_workers/index.html">Service worker tutorial</a></li>
</ol>
<p>Tutorial files:</p>
<ol>
<li>
<a
href="https://github.com/mdn/pwa-examples/tree/main/cycletracker/html_and_css/"
>HTML and CSS</a
>
</li>
<li>Secure connection (no files)</li>
<li>
<a
href="https://github.com/mdn/pwa-examples/tree/main/cycletracker/javascript_functionality/"
>JavaScript functionality</a
>
</li>
<li>
<a
href="https://github.com/mdn/pwa-examples/tree/main/cycletracker/manifest_file/"
>Manifest file tutorial</a
>
</li>
<li>
<a
href="https://github.com/mdn/pwa-examples/tree/main/cycletracker/service_workers/"
>Service worker tutorial</a
>
</li>
</ol>
</body>
</html>