HTML Developer

  Home  Web Development  HTML Developer


“HTML Developer Frequently Asked Questions in various HTML Developer job interviews by interviewer. The set of questions are here to ensures that you offer a perfect answer posed to you. So get preparation for your new job interview”



75 HTML Developer Questions And Answers

63⟩ Can you explain five new input types provided by HTML5 for forms?

Following are the important, new data types offered by HTML5:

☛ Date: It allows the user to select a date.

☛ datetime-local: This input type allows the user to select a date and time without time zone.

☛ datetime: This input type allows the user to select a date and time with time zone.

☛ month: It allows the user to select a month and year

☛ email: These input fields used to contain an e-mail address.

 196 views

67⟩ Do you know what is a javascript object?

A collection of data containing both properties and methods. Each element in a document is an object. Using the DOM you can get at each of these elements/objects and do some cool sh*t.

 185 views

68⟩ Tell me what are the limits of the text field size?

The default size for a text field is around 13 characters, but if you include the size attribute, you can set the size value to be as low as 1. The maximum size value will be determined by the browser width. If the size attribute is set to 0, the size will be set to the default size of 13 characters.

 192 views

72⟩ Explain me what are style sheets?

Style sheets enable you to build consistent, transportable, and well-defined style templates. These templates can be linked to several different web pages, making it easy to maintain and change the look and feel of all the web pages within a site.

 186 views