HTML5 Interview Questions and Answers
In the past years, the adoption of HTML5 has increased in an emerging way that more and more companies are using it to deliver rich cross-platform web applications. In this article, we have tried to cover all HTML5 Interview Questions and Answers which are for both basic and advanced levels. Now the question that would come to your mind is- what is HTML5? To develop any web application mainly three components are required i.e. HTML, CSS, and Javascript where HTML is mainly used for designing the website.HTML5 is the latest version which supports all kinds of existing web pages. Every web page you visit today on the internet is written with one or another version of HTML code. HTML5 is one of the highest-paying web technologies so everyone needs to learn basic concepts about this markup language. Companies like Facebook, Amazon, Google, and Youtube have been shifted to HTML5 from Adobe’s Flash for better development. For many years, millions of developers were using this technology but since 2015 it is the most reliable and universal choice to develop web applications. To help you with the same, we have created this article which would clear all your concepts regarding HTML5.
Quick Facts About HTML5 | |
---|---|
What is HTML5? | It is a MARKUP language that is mainly used for creating interfaces rather than analytical works or logical. |
What is the latest version of HTML5? | HTML5.2 released on December 2017 |
Who developed HTML5? | WHATWG |
When was HTML5 first released? | 28 October 2014 |
Most Frequently Asked HTML5 Interview Questions
HTML | HTML5 | |
---|---|---|
1. | The primary language for making web pages. | The fifth and latest version of HTML |
2. | Audio/Video not a part | Audio/Video an important part |
3. | Browser cache used for temporary storage | Application cache, web SQL DB, ad web storage used as temporary storage. |
API (Application Programming Interfaces) in HTML5 is a way to build different applications using pre-built components. Developers can integrate the relevant features of existing APIs into their new websites.
The APIs in HTML5 are:
- HTML Web Workers
- HTML Drag and Drop
- HTML Application Cache
- HTML Local Storage
- HTML SSE
- HTML Geolocation
A semantic element absolutely describes its that means to each the browser and the developer. Elements such as header, footer and article are all viewed semantically due to the fact they precisely describe the reason for the aspect and the kind of content material that is inner them.
HTML5 Semantic Elements
- header
- section
- nav
- aside
- footer etc
HTML5 has introduced the following structural elements for defining different parts of a web page:
- <header>: Represents HTML's header data
- <footer>: Footer of the page
- <nav>: Represents page's navigation elements
- <article>: Content that is self-contained
- <section>: Defines sections or groups content into sections
- <aside>: Refers to side bar contents
Here is a list of page structure in HTML 5:
- <header> - Used to define header for a document or a section
- <nav> - Used to define container for navigation links
- <section> - Used to define a section inside a document
- <article> - Used to tag an independent self-contained article
- <aside> - Defines the content separately (just like a sidebar)
- <footer> - Used for tagging a footer inside a document or a section
- <details> - Usd to define any additional details
- <summary> - Used to define a heading inside the <details> element
No, HTML is not case sensitive. It means that <P> is the same as <p>. However, W3C advises writing HTML in lowercase especially when working on an XHTML document.
Follow these steps to optimize assets and also reduce the page load time of any website:
- Properly naming all assets.
- Using a content delivery network (CDN) for media files.
- Hosting assets on different domains while also reducing DNS lookups
- Using a cookie-free domain to place assets and splitting them among domains
- Using CSS Sprites for Images.
- Disabling etags.
- Minimizing the use of JS in code.
- Minimizing inline CSS and using internal and external style sheets.
SVGs or Scalable Vector Graphics are used in HTML 5 to display 2-D graphics and its applications in XML which is later on rendered by an SVG viewer. The SVG element is used to contain SVG graphics.
<!DOCTYPE html>
<html>
<body>
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg>
</body>
</html>
It is used to create a reference to a Document Type Definition. In HTML 5, Doctype declaration is only needed to enable a standard mode for documents which are written with the HTML syntax. Hence, the Doctype for HTML 5 is short and case-insensitive.
- <!DOCTYPE html>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Canvas | SVG | |
---|---|---|
1. | Resolution dependent | Resolution independent |
2. | No support for event handlers | Provides support for event handlers |
3. | Suitable for graphic-intensive | Ideal for creating graphics similar to CAD software |
3. | Works best for small rendering areas | Works even for large rendering areas |
HTML5 has introduced the concept of Local Storage, which is used to access a web page's local storage area without any time limit. Local storage is available whenever the user wants to use the web page.
The data stored in Local Storage does not get automatically deleted when the browser window is closed; it only gets removed when deleted manually. In local storage, the data is stored using a key and value.
In HTML5, data can be stored in 2 ways – session storage and local storage.
- Session Storage: The data or details from the current browsing session are stored. Once the browser gets closer by the user, the storage data gets removed.
- Local Storage: The data does not get cleared automatically when the user closes the browser.
The <audio> tag in HTML5 is used to embed voice in an HTML document. Designers use <source> tag to specify media type along with other attributes.
The <video> tag in HTML5 is used to embed a video file in an HTML document. Designers can use <source> tag to specify media type along with other attributes.
The <fieldset> tag in HTML5 is used to group together related form elements. A <fieldset> must begin with a <legend> tag because this tag will define the title of the fieldset. By using <fieldset> tag and <legend> tag together, designers can make their forms easier to understand and use.
The syntax for <fieldset> tag is: <fieldset>Controls</fieldset>
In HTML 5, an Image map is one having clickable areas. The tag map defines an image-map.
<img src="https://www.bestinterviewquestion.com/storage/blog/small/1585841464.png" alt="Workplace" usemap="#workmap">
<map name="workmap">
<area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
<area shape="rect" coords="290,172,333,250" alt="Phone" href="phone.htm">
<area shape="circle" coords="337,300,44" alt="Coffee" href="coffee.htm">
</map>
MathML is Mathematical Markup Language. This language is used to show scientific and mathematical content on web pages. HTML5 allows you to use MathML elements in a document using <math>...</math> tags.
A mathematical expression should be inserted in the element <math> with a specified namespace as shown below: <math xmlns="http://www.w3.org/1998/Math/MathML"> </math>
A web worker in HTML5 is a script that runs on a separate thread in the background without the need for the main web page to wait for it to complete. Web Workers enable long tasks to be achieved without keeping the web page responsive.
There are two types of web workers - Dedicated workers and Shared workers.
In HTML5, users will receive two types of web storages as following.
1. Local Storage: Here, data will be stored in the local storage, and will not be cleared automatically or when we close the browser.
2. Session Storage: With this type, the user’s browser current session data will be stored. Once the browser is closed, the storage will be cleared.
The abbreviation WHATWG stands for Web Hypertext Application Technology Working Group in HTML5. This is an organization which both develops and maintains the HTML and API for web applications.
Microdata is a newly introduced, simple semantic syntax which can be used by developers to add the nested groups of name and value pair of data to documents, that are based on the page content commonly. It’s used with new global attributes of HTML5.
The in HTML5 refers to indicating to the web browser about the version of HTML in which the page is created. Neither there is an end tag is not is it case sensitive.
In HTML5, declaration should be the first thing before HTML tag. This is because of all previous version before HTML5 followed Standard Generalized Markup Language (SGML). Because HTML5 does not follow SGML, it does not require references to DTD (Document Type Definition).
HTML5 has introduced a way to let designers take charge of the web page area that is visible to the users through tags. The tag tells information related to an HTML document. Some of the examples are Link, Style, and Title. With meta tag, we can add meta ketwords, meta description and meta title that helps for SEO Purposes.
HTML5 has introduced new input types for forms. Designers can build interactive and user-friendly web forms by using these input types. The new input types also provide improved data validation, better color picker controls, and enhanced input control.
The new input types are:
- Time
- Date
- Datetime
- Datetime-local
- Week
- Month
- Color
- Number
- Range
- Search
- Telephone
- URL
A hyperlink in HTML is a text of an image on a web page that when clicked by the user redirects him to a new web page. Hyperlinks, or links, are defined with <a> tag. The primary use of Hyperlinks is to link one web page to another.
The Geolocation API in HTML5 allows the users to share their physical location with selected websites. This happens when JavaScript captures a user’s latitude and longitude and sends it to the back-end server for enabling location-aware features such as finding local businesses or showing location on a map.
- Editing content within element and "required" form attribute
- Figure tag and SVG element
- Webfonts
- Transition and Animation
- Web Icons
- Easily implemented audio, video, map with these tags
No. Local storage is not very secure because it was not designed to be used as secured storage in a web browser. Local storage was only designed to be a simple key/value storage that developers would use to build single page apps.
HTML5 users implement list tags to list out the required information. The most commonly used list tags are mentioned below for your acknowledgment.
Definition List: This list tag offers a list in it and takes Definition Term (<dt>...</dt>
) and a detailed definition (<dd>...</dd>
).
1. Ordered List: This list tag provides the required list by the user in a numbered format.
Syntax:
<ol>...</ol>
2. Unordered List: This one offers the user required a list in a bullet format.
Syntax:
<ul>...</ul>
Both the ordered and unordered list item tags use the list item tags (<ul>...</ul>
) in them.
Custom attributes are one of the most important new features in HTML5. They play an integral role in semantic development. Custom attributes are designed to store custom data private to web pages or applications for which there are no other attributes. Because custom attributes are valid in HTML5, they get used in all browsers that support HTML5 doctypes.
All attributes in HTML5 on an element starts with "data-" like data-type="best", data-distance="4km", data-identifier="bestinterviewquestion.com".
We can color HTML elements in three different ways, as mentioned below.
- #efefef or Hex Color
- By using the color name such as blue, red, etc.
- RGB(10,234,128). This is a combination of red, green, and blue.
Web SQL is not a part of HTML5. It is a separate specification that helps in developing web apps. Web SQL is used to manage the client-side database because it stores data on the client side, not on the server side. A Web SQL database works only in latest versions of Google Chrome, Safari, and Opera browsers.
The <iframe> tag is used to indicate an inline frame, or, a browsing context that is nested. It allows outside documents to be inserted in the main HTML document seamlessly. Inline frames are mostly used in online advertising, where the contents of the iframe can e an ad from a third party.
The World Wide Web Consortium (W3C) is a community of developers working towards setting global standards for development.
WHATWG is short for Web Hypertext Application Technology Working Group. It was created during a W3C workshop session by working individuals of Apple, Mozilla and Opera Software in 2004. WHATWG is a community of developers focused more on HTML rather than XHTML and working on standards to improve on user needs.
Formatting tags are used in HTML 5 to display different styles of text. Here are the formatting tags in HTML 5:
- <b> - Used to bold text
- <strong> - Use to mark text as Important
- <i> - Used to write in Italics
- <em> - Used to emphasize text
- <mark> - Used to mark text
- <small> - Used to make the text small
- <del> - Used to Delete text
- <ins> - Used to Insert text
- <sub> - Used to make a subscript text.
- <sup> - Used to make a superscript text
- <frame>
- <basefront>
- <applet>
- <frameset>
- <big>
- <center>
- <bigcenter>
- <noframes>
- <dir>
- <tt>
- <acronym>
- <basefont>
In HTML 5, the manifest file is a normal text file used for listing resources in the browser which are to be cached for offline access. It also helps in loading resources faster and reducing server load time.
The Drag and Drop feature is primarily a part of HTML 5. It is used to grab an object and move it towards another location. In HTML 5, every element is draggable by default. Hence, there is no need for a separate function.
The <a> tag in HTML 5 is used to define a hyperlink. The <a> tag is used to link one page to another. The most vital function of the <a> element is having the href attribute, which accurately indicates the link's destination. By default, the hyperlinks will automatically appear in all browsers
Here is a list of the new form attributes introduced in HTML 5
- novalidate
- autocomplete
A server-sent event is when a net page automatically receives updates from a server. This used to be additionally possible before, however, the internet web page would have to ask if any updates had been available. With server-sent events, the updates come automatically.
- Websockets and SSE (Server-Sent Events) are each successful of pushing records to browsers, however, they are no longer competing for technologies.
- Websockets connections can both ship statistics to the browser and acquire information from the browser. A true example of an application that ought to use WebSockets is a chat application.
- SSE connections can solely push statistics to the browser. Online inventory prices or twitters updating timeline or feed are excellent examples of a utility that ought to benefit from SSE.
- In exercise considering the fact that the whole lot that can be executed with SSE can also be executed with Websockets, Websockets is getting a lot greater attention and love, and many more browsers help Websockets than SSE.
Today HTML is considered as the base for all web applications, but with each passing version, many new elements and features have been added to it. So, there is a high chance that the interviewer may ask about the currently used features but as it all starts with HTML so one must learn both. To summarize-
- Should know the difference between versions of HTML especially HTML4 and HTML5
- When writing code, always close your HTML tags.
- Remember HTML is a Markup language, not a programming language.
- Work with the lists and be more familiar with HTML tables.
Features of HTML5
- Editing content within element and "required" form attribute
- Figure tag and SVG element
- Web fonts
- Transition and Animation
- Web Icons
- Easily implemented audio, video, map with these tags