-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.12 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
<!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">
<title>Workbox Recipe</title>
<link rel="manifest" href="/app.webmanifest">
<link rel="stylesheet" href="/style.css">
</head>
<body class="bg-black mx-4 my-4">
<h1 class="text-green-200 py-2 my-4">workbox recipe using workbox-sw (local)</h1>
<p class="prose text-gray-300">workbox-sw is used locally via workbox copylibraries commmand</p>
<pre class="bg-gray-300 mt-4 pt-4">
<code>npx workbox copylibraries</code>
</pre>
<section class="bg-white py-4 px-4">
<h3>shoutout!!</h3>
<blockquote cite="https://www.flaticon.com/free-icons/love-and-romance">
The app icon is downloaded freely from the flaticon website.
you can visit them with this link <a class="text-blue-700" href="https://www.flaticon.com/free-icons/love-and-romance" title="love and romance icons">Love and romance icons created by Freepik - Flaticon</a>
</blockquote>
</section>
<script src="main.js" charset="utf-8"></script>
</body>
</html>