16 lines
251 B
HTML
16 lines
251 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
input {
|
|
background-color: blue;
|
|
border: 1px red solid;
|
|
width: 400px;
|
|
color: white;
|
|
padding: 2px;
|
|
margin: 5px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<input type='file'>
|
|
</body>
|
|
</html>
|