-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.22 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
<html>
<head>
<title>Alexa Icon Builder</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible content=" ie="edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="author" content="Francesco Strazzullo - Alessandro Violini">
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2:wght@400;700&display=swap" rel="stylesheet">
<link href="normalize.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<image src="placeholder.png" style="display:none;"/>
<section class="main_box" data-drop-area>
<h1 class="main_title">Alexa Icon Builder</h1>
<p class="main_text">Drag & Drop an image or select a file from your computer (png, jpg, gif)</p>
<form class="icon_box">
<input type="file" accept="image/*">
<canvas height="100"></canvas>
<button type="button">Generate Icon!</button>
</form>
<script src="src/index.js" type="module"></script>
</section>
</body>
</html>