HTML & CSS Web Design
Html Css > Code Examples
Input Type Text Accept Element
1
2
3
4
5
6
7
8
9
10
11
Input Type Text Accept Element
<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>