mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 09:20:16 +00:00
17 lines
251 B
HTML
17 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>
|