You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Input Type Text Accept Elem...

9 lines
233 B
HTML

<html>
<title>Input Type Text Accept Element</title>
<body>
<input type="text"
size=50
accept="image/jpg,text/html"
value='The content type this field accepts is "image/jpg,text/html"'>
</body>
</html>