-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·38 lines (34 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>File Upload with Progress Bar | CodingNepal</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<main style="padding: 2rem">
<form action="#" class="quick_file_up__form">
<input class="quick_file_up__input" type="file" name="file" />
<p class="quick_file_up__text">Browse File to Upload</p>
</form>
<hr style="margin: 2rem 0" />
<form action="#" class="another">
<div
class="hidden_area"
style="
background-color: #3d3a3a;
max-width: 300px;
height: 100px;
cursor: pointer;
border-radius: 10px;
border: 2px dashed #8a8787;
"
>
<input type="file" name="file" class="another_input" hidden />
</div>
</form>
</main>
<script src="script.js"></script>
</body>
</html>