aspvbnetnerd
Programmer
Can I change the font for the button for a
<input type="file" name="file1" size="50">
George
<input type="file" name="file1" size="50">
George
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<input type="file" name="file1" size="50" [!]style="font-family:tahoma"[/!]>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<script type="text/javascript"></script>
<style type="text/css">
* {
font-family:serif;
border:0px;
}
</style>
</head>
<body>
<input type="file" />
</body>
</html>