-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#3367D6">
<!-- icon in the highest resolution we need it for -->
<link rel="icon" sizes="128x128" href="./images/icon-128.png">
<link rel="icon" sizes="512x512" href="./images/icon-512.png">
<!-- reuse same icon for Safari -->
<link rel="apple-touch-icon" href="./images/icon-128.png">
<!-- multiple icons for IE -->
<meta name="msapplication-square512x512logo" content="./images/icon-512.png">
<link rel="manifest" href="./manifest.json">
<title>Web Component Demo</title>
<style>
body, html {
width: 100%;
margin: 0px;
padding: 0px;
}
</style>
<script src="dist/es5-loader.js"></script>
</head>
<body>
<noscript>
Sorry, this page requires javascript in oder for it to work
</noscript>
<my-element> </my-element>
<my-typed-lit-element mood="working"></my-typed-lit-element>
</body>
</html>