-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (29 loc) · 820 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
26
27
28
29
30
31
<html>
<head>
<meta charset="utf-8">
<title>Neon Origami</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<script src="https://unpkg.com/neonorigami/neonorigami.js"></script>
<style>
body, html {
margin: 0;
padding: 0;
}
body {
background-color: #e0e0e0;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
neon-origami {
width: 80%;
height: 80%;
}
</style>
</head>
<body>
<neon-origami></neon-origami>
</body>
</html>