-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 982 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Shake and Vape! - DIY Vaping Recipes</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<meta name="theme-color" content="#3b8183">
<!-- Polyfill for browsers that do not support web components. -->
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<!-- Custom styling for elements and website icon. -->
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="icon" type="image/png" href="images/favicon-128.png">
<!-- Add Progressive Web App (PWA) manifest. -->
<link rel="manifest" href="/manifest.json">
<!-- Main entry point web component. -->
<link rel="import" href="/src/skeleton/diy-app.html">
</head>
<body>
<diy-app></diy-app>
<noscript>
Sorry, JavaScript is required to run this website.
</noscript>
</body>
</html>