forked from amandabaker/pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>PWA Examples</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Directory of PWAs</h1>
<ul>
<li><a href="display-browser/index.html">PWA with display: browser</a></li>
<li><a href="display-fullscreen/index.html">PWA with display: fullscreen</a></li>
<li><a href="display-minimal-ui/index.html">PWA with display: minimal-ui</a></li>
<li><a href="display-standalone/index.html">PWA with display: standalone</a></li>
<li><a href="display-override/index.html">PWA with display-override</a></li>
<li><a href="display-override-wco/index.html">PWA with display-override (WCO)</a></li>
<li><a href="display-override-browser/index.html">PWA with display-override set to browser</a></li>
<li><a href="display-override-custom/index.html">PWA with display:browser, display_override:standalone</a></li>
<li><a href="display-override-tabbed/index.html">PWA with display:standalone, display_override:tabbed</a></li>
<li><a href="get-user-media/index.html">PWA with display:standalone, getusermedia</a></li>
<li><a href="file-handlers/index.html">PWA with display:standalone, file handlers</a></li>
<li><a href="display-standalone-no-icons/index.html">PWA with display: standalone. no icons</a></li>
<li><a href="perfentry/index.html">PWA Perf Entry</a></li>
</ul>
</body>
</html>