-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 997 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multiple Image Upload Preview</title>
<!--Font Awesome Icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<!-- Style CSS -->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<h1>Multiple Image Upload Preview</h1>
<input type="file" id="file-input" accept="image/png, image/jpeg" onchange="preview()" multiple>
<label for="file-input">
<i class="fas fa-upload"></i> Choose A Photo
</label>
<p id="num-of-files" style="display: none;">No Files Chosen</p>
<div id="images"></div>
</div>
<!-- Script JS -->
<script src="./script.js"></script>
</body>
</html>