-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
46 lines (44 loc) · 1.09 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
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<title>50 Lines</title>
<style>
#source {
display: none;
position: fixed;
z-index: -1;
left: -1000vw;
}
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
font-family: Roboto, sans-serif;
}
.subscribe-box {
position: fixed;
bottom: 0;
left: 0;
z-index: 10;
padding: 7px;
line-height: 1.5;
background: white;
}
</style>
</head>
<body>
<canvas id="source"></canvas>
<canvas id="result"></canvas>
<input type="file" accept="image/*" id="file-input">
<script src="main.js"></script>
<div class="subscribe-box">
<a href="https://github.com/Loskir/50-lines" target="_blank" rel="noopener noreferrer">Source</a>.
Subscribe to my channel: <a href="https://tttttt.me/loskirs" target="_blank" rel="noopener noreferrer">@Loskirs</a>
</div>
</body>
</html>