-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 717 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="How to design custom input type file button using HTML and CSS" />
<title>Custom file input</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<section class="custom_input_sect">
<div class="container">
<div class="custom_input_inn">
<label for="custominput" class="custominputlabel">
Upload File
<input type="file" name="custominputfield" id="custominput" />
</label>
</div>
</div>
</section><!-- end of custom_input_sect -->
</body>
</html>