You work as a developer at ABC.com. The ABC.com network consists of a single domain named
ABC.com. You make use of CSS3 and HTML5 for development purposes.
You are in the process of creating a client contact form for ABC.com. The form must be configured
to gather data regarding the client, and will be displayed on a page of ABC.com’s website.
You have added the following HTML:
<input name=”email” type=”email”/>
Which of the following describes the reason for using this HTML?

A.
It requires the client to provide anapplicable e-mail address, prior to tendering the form.
B.
It requires the client to provide any e-mail address, prior to tendering the form.
C.
It allows the client to download, and e-mail the completed form.
D.
It allows the page to e-mail the form to the client.
Explanation:
I think answer should be B. The tag doesn’t have any regex expression. How would it know what type of email it is expecting? It would accept any email address.
0
0
it is the correct answer
resource:
http://www.w3schools.com/html/html_form_input_types.asp
read paragraph input type email
0
0
The answer should be B. it takes any crap if you put ‘@’ and one word after that. no Validation is done by the type ’email’.
Don’t believe me, try it yourself
1
0