-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
32 lines (32 loc) · 817 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
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1">
<title>Snapchat Killer</title>
<style media="screen">
body {
background-color: #262422;
color: #DCD9CD;
padding: 0;
margin: 0;
}
canvas {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
margin: 0;
padding: 0;
object-fit: cover;
transform: scaleX(-1);
}
</style>
<link rel="stylesheet" href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
</head>
<body>
<div id="publisher"></div>
<script src="./js/index.bundle.js" charset="utf-8"></script>
</body>
</html>