xxxxxxxxxx
<html>
<body>
<h1>
Accept Attribute example for file picker allowing image and pdf files
</h1>
<p>
A file picker control that allows all image types and pdf files uploads:
</p>
<label for="filepicker">Choose a file:</label>
<input
type="file"
id="filepicker"
name="filepicker"
accept="image/*,.pdf"
/>
</body>
</html>