24 lines
592 B
HTML
24 lines
592 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Convy</title>
|
|
<script src="script.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
<div id="dragOverlay" style="display: none;">
|
|
Drop file to convert
|
|
</div>
|
|
<input type="file" id="upload"><br>
|
|
Or drag & drop
|
|
<canvas id="cv" style=""></canvas>
|
|
<div id="downloadButtons">
|
|
<button id="downloadPng">png</button>
|
|
<button id="downloadWebp">webp</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |