HTML5 Technical Interview Questions Answers


What is HTML5?

HTML5 is the next major revision of the HTML standard superseding HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for structuring and presenting content on the World Wide Web.

Name some of the new features of HTML5.

HTML5 introduces a number of new elements and attributes that helps in building modern websites. Following are great features introduced in HTML5 −

New Semantic Elements − These are like <header>, <footer>, and <section>.

Forms 2.0 − Improvements to HTML web forms where new attributes have been introduced for <input> tag.

Persistent Local Storage − To achieve without resorting to third-party plugins.

WebSocket − A next-generation bidirectional communication technology for web applications.

Server-Sent Events − HTML5 introduces events that flow from a web server to the web browsers and they are called Server-Sent Events (SSE).

Canvas − This supports a two-dimensional drawing surface that you can program with JavaScript.

Audio & Video − You can embed audio or video on your web pages without resorting to third-party plugins.

Geolocation − Now visitors can choose to share their physical location with your web application.

Microdata − This lets you create your own vocabularies beyond HTML5 and extend your web pages with custom semantics.

Drag and drop − Drag and drop the items from one location to another location on a the same webpage.


Which browsers support HTML5?

The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features, and Internet Explorer 9.0 will also have support for some HTML5 functionality. The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.


Is HTML5 backward compatible with old browsers?

Yes! HTML5 is designed, as much as possible, to be backward compatible with existing web browsers. New features build on existing features and allow you to provide fallback content for older browsers. It is suggested to detect support for individual HTML5 features using a few lines of JavaScript.


Are HTML tags case sensitive?

No!

What is the purpose of the 'section' tag in HTML5?

This tag represents a generic document or application section. It can be used together with h1-h6 to indicate the document structure.


What is the purpose of the 'article' tag in HTML5?

This tag represents an independent piece of content of a document, such as a blog entry or newspaper article.

What is the purpose of the 'aside' tag in HTML5?

This tag represents a piece of content that is only slightly related to the rest of the page.


What is the purpose of the 'header' tag in HTML5?

This tag represents the header of a section.

What is the purpose of the 'footer' tag in HTML5?

This tag represents a footer for a section and can contain information about the author, copyright information, et cetera.

What is the purpose of the 'nav' tag in HTML5?

This tag represents a section of the document intended for navigation.

What is the purpose of the 'dialog' tag in HTML5?

This tag can be used to mark up a conversation.

What is the purpose of the 'figure' tag in HTML5?

This tag can be used to associate a caption together with some embedded content, such as a graphic or video.

What are custom attributes in HTML5?

A custom data attribute starts with data- and would be named based on your requirement. Following is the simple example − <div class="example" data-subject="physics" data-level="complex"> ... </div> The above will be perfectly valid HTML5 with two custom attributes called data-subject and data-level. You would be able to get the values of these attributes using JavaScript APIs or CSS in a similar way as you get for standard attributes.


What is Web Forms 2.0?

Web Forms 2.0 is an extension to the forms features found in HTML4. Form elements and attributes in HTML5 provide a greater degree of semantic mark-up than in HTML4 and remove a great deal of the need for tedious scripting and styling that was required in HTML4.


What is the purpose of DateTime input control in Web form 2.0?

It represents a date and time (year, month, day, hour, minute, second, fractions of a second) encoded according to ISO 8601 with the time zone set to UTC.

What is the purpose of DateTime-local input control in Web form 2.0?

It represents a date and time (year, month, day, hour, minute, second, fractions of a second) encoded according to ISO 8601 with no time zone information.

What is the purpose of data input control in Web form 2.0?

It represents a date (year, month, day) encoded according to ISO 8601.

What is the purpose of month input control in Web form 2.0?

It represents a date consisting of a year and a month encoded according to ISO 8601.


What is the purpose of week input control in Web form 2.0?

It represents a date consisting of a year and a week number encoded according to ISO 8601.

What is the purpose of time input control in Web form 2.0?

It represents a time (hour, minute, seconds, fractional seconds) encoded according to ISO 8601.

What is the purpose of number input control in Web form 2.0?

This control accepts only numerical value. The step attribute specifies the precision, defaulting to 1.

What is the purpose of range input control in Web form 2.0?

The range type is used for input fields that should contain a value from a range of numbers.


What is the purpose of email input control in Web form 2.0?

This accepts only email value. This type is used for input fields that should contain an e-mail address. If you try to submit a simple text, it forces to enter only your email address in email@example.com format.


What is the purpose of URL input control in Web form 2.0?

This accepts only URL values. This type is used for input fields that should contain a URL address. If you try to submit a simple text, it forces to enter only the URL address either in http://www.example.com format or in http://example.com format.


What is the purpose of the 'output' tag in HTML5?

HTML5 introduced a new element <output> which is used to represent the result of different types of output, such as output written by a script.


What is the purpose of the 'placeholder' attribute in HTML5?

HTML5 introduced a new attribute called placeholder. This attribute on <input> and <textarea> elements provides a hint to the user of what can be entered in the field. The placeholder text must not contain carriage returns or line feeds.


What is the purpose of the 'autofocus' attribute in HTML5?

This is a simple one-step pattern, easily programmed in JavaScript at the time of document load, and automatically focuses on one particular form field.

What is the purpose of the 'required' attribute in HTML5?

HTML5 introduced a new attribute called required which would insist to have a value in an input control.


Can you use SVG tags directly in HTML5 without any plugin?

Yes! HTML5 allows embeding SVG directly using <svg>...</svg> tag.

Can you use MathML tags directly in HTML5 without any plugin?

Yes! The HTML syntax of HTML5 allows for MathML elements to be used inside a document using <math>...</math> tags.


What are the drawbacks of cookies?

Cookies have the following drawbacks− Cookies are included with every HTTP request, thereby slowing down your web application by transmitting the same data. Cookies are included with every HTTP request, thereby sending data unencrypted over the internet. Cookies are limited to about 4 KB of data. Not enough to store the required data.


What do you mean by session storage in HTML5?

HTML5 introduces the sessionStorage attribute which would be used by the sites to add data to the session storage, and it will be accessible to any page from the same site opened in that window i.e. session and as soon as you close the window, the session would be lost.

What do you mean by local storage in HTML5?

HTML5 introduces the localStorage attribute which would be used to access a page's local storage area without no time limit and this local storage will be available whenever you would use that page.


When does a session storage data get deleted?

The Session Storage Data would be deleted by the browsers immediately after the session gets terminated.


When a local storage data get deleted?

local storage data has no time limit. To clear a local storage setting you would need to call localStorage.remove('key'); where 'key' is the key of the value you want to remove. If you want to clear all settings, you need to call localStorage.clear() method.


What are Server Side Events in HTML5?

Along with HTML5, WHATWG Web Applications 1.0 introduces events that flow from a web server to web browsers and they are called Server-Sent Events (SSE). Using SSE you can push DOM events continuously from your web server to the visitor's browser. The event streaming approach opens a persistent connection to the server, sending data to the client when new information is available, eliminating the need for continuous polling. Server-sent events standardize how we stream data from the server to the client.


How to utilize a server-sent event in HTML5?

To use Server-Sent Events in a web application, you would need to add an <eventsource> element to the document. The src attribute of the <eventsource> element should point to an URL that should provide a persistent HTTP connection that sends a data stream containing the events. The URL would point to a PHP, PERL, or any Python script which would take care of sending event data consistently.


What are the steps of server-side scripts for SSE?

The server-side script should send Content-type header specifying the type text/event-stream as follows− print "Content-Type: text/event-stream\n\n"; After setting Content-Type, the server-side script would send an Event − tag followed by event name. The following example would send Server-Time as an event name terminated by a new line character. print "Event: server-time\n"; Final step is to send event data using Data − tag which would be followed by integer of string value terminated by a new line character as follows− $time = local time(); print "Data: $time\n";


What are web sockets?

Web Sockets is a next-generation bidirectional communication technology for web applications that operates over a single socket and is exposed via a JavaScript interface in HTML 5 compliant browsers. Once you get a Web Socket connection with the web server, you can send data from browser to server by calling a send() method, and receive data from server to browser by an onmessage event handler. Following is the API which creates a new WebSocket object. var Socket = new WebSocket(url, [protocal] ); Here first argument, url, specifies the URL to which to connect. The second attribute, protocol is optional, and if present, specifies a sub-protocol that the server must support for the connection to be successful.


What is the purpose of the Socket.readyState attribute of WebSocket?

The readonly attribute readyState represents the state of the connection. It can have the following values − A value of 0 indicates that the connection has not yet been established. A value of 1 indicates that the connection is established and communication is possible. A value of 2 indicates that the connection is going through the closing handshake. A value of 3 indicates that the connection has been closed or could not be opened.


What is the purpose of the Socket.bufferedAmount attribute of WebSocket?

The readonly attribute bufferedAmount represents the number of bytes of UTF-8 text that have been queued using send() method.


What is the purpose of the 'canvas' tag in HTML5?

HTML5 element <canvas> gives you an easy and powerful way to draw graphics using JavaScript. It can be used to draw graphs, make photo compositions or do simple (and not so simple) animations.


What is the purpose of the 'audio' tag in HTML5?

HTML5 supports <audio> tag which is used to embed sound content in an HTML or XHTML document. The current HTML5 draft specification does not specify which audio formats browsers should support in the audio tag. But the most commonly used audio formats are Ogg, mp3, and wav. You can use <source> tag to specify media along with media type and many other attributes. An audio element allows multiple source elements and the browser will use the first recognized format.


What is the purpose of the 'video' tag in HTML5?

HTML5 supports <video> tag which is used to embed a video file in an HTML or XHTML document.The current HTML5 draft specification does not specify which video formats browsers should support in the video tag. But the most commonly used video formats are−

Ogg − Ogg files with Thedora video codec and Vorbis audio codec.

mpeg4 − MPEG4 files with H.264 video codec and AAC audio codec. You can use <source> tag to specify media along with media type and many other attributes. An audio element allows multiple source elements and the browser will use the first recognized format.


What is Geolocation API in HTML?

HTML5 Geolocation API lets you share your location with your favorite websites. A Javascript can capture your latitude and longitude and can be sent to the backend web server and do fancy location-aware things like finding local businesses or showing your location on a map. Today most browsers and mobile devices support Geolocation API. The geolocation APIs work with a new property of the global navigator object ie. Geolocation object can be created as follows: var geolocation = navigator. geolocation; A geolocation object is a service object that allows widgets to retrieve information about the geographic location of the device.


What is purpose of getCurrentPosition() method of geolocation object of HTML5?

This method retrieves the current geographic location of the user.


What is the purpose of the watchPosition() method of geolocation object of HTML5?

This method retrieves periodic updates about the current geographic location of the device.

What is purpose of clearPosition() method of geolocation object of HTML5?

This method cancels an ongoing watchPosition call.

What are Web Workers?

Web Workers do all the computationally expensive tasks without interrupting the user interface and typically run on separate threads. Web Workers allow for long-running scripts that are not interrupted by scripts that respond to clicks or other user interactions, and allow long tasks to be executed without yielding to keep the page responsive.
Previous Post Next Post