-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.18 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
<!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>Uploader and image previewer</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<script
src="https://kit.fontawesome.com/00d8053853.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="container">
<div class="wrapper">
<label for="files">
<input
type="file"
name="files"
id="files"
style="display: none;"
webkitdirectory
/>
<i class="fas fa-upload fa-2x"></i>
<input type="button" id="fileBtn"
onclick="document.getElementById('files').click()"
</label>
</div>
</div>
<div class="row">
<div class="column"></div>
<div class="column"></div>
<div class="column"></div>
<div class="column"></div>
</div>
<script src="main.js"></script>
</body>
</html>