-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
25 lines (25 loc) · 978 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
25
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Nuxeo Logo Generator</title>
<meta name="description" content="A small web application that simplifies the process of creating Nuxeo logos.">
<meta property="twitter:image" content="https://github.com/mnixo/nuxeo-logo-generator/raw/master/img/icon-192.png">
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
<link rel="manifest" href="manifest.json">
<link rel="import" href="service-worker.html">
<link id="analytics">
<script src="node_modules/web-animations-js/web-animations-next-lite.min.js"></script>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script type="module" src="src/nlg-app.js"></script>
</head>
<body>
<style>
body {
background-color: #eee;
}
</style>
<nlg-app></nlg-app>
</body>
</html>