-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
26 lines (24 loc) · 829 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ascii Art Converter</title>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<h1>Ascii Art Converter</h1>
<p>Upload a picture and turn it into pure ASCII masterpiece!</p>
</header>
<input type="file" name="picture" />
<canvas id="preview" style="display: none;"></canvas>
<pre id="ascii"></pre>
<footer>
<p><a href="#">How does it works?</a> • <a href="#">Source code (GitHub)</a></p>
</footer>
<script src="./src/index.js"></script>
</body>
</html>