HTML5 Application Development
Last Update May 31, 2026
Total Questions : 68
We are offering FREE INF-306 IT Specialist exam questions. All you do is to just go and sign up. Give your details, prepare INF-306 free exam questions and then go for complete pool of HTML5 Application Development test questions that will help you more.
You need to identify the form elements.
Move the appropriate semantic elements from the list on the left to the correct locations on the right.
Note: You will receive partial credit for each correct response.
The development team just released a new version of an app for your team to test. Which three tasks should you perform during testing? Choose 3.
You need to ensure that the value of an input element is a valid 10-digit phone number with no symbols. The input element should initially display all zeroes, but that value should never be stored with the form.
Complete the markup by selecting the correct option from each drop-down list.
Which code segment correctly displays images with 80% transparency and a blue 8px shadow?
You need to contain overflowing text inside the element ' s border without creating unneeded scrollbars or losing text. Which attribute setting should you use?
You need to complete the code for a registration form that must meet the following criteria:
• The Password must be 6–8 characters long and use only letters and numbers.
• The Member ID must follow the pattern ###-##-###.
Complete the markup by selecting the correct option from each drop-down list.
Note: You will receive partial credit for each correct selection.
A form has four buttons with a class of item. You need to apply an event listener to all buttons to invoke the moveElement function when a button is pressed. Your code must ensure bubble capture.
Complete the markup by selecting the correct option from each drop-down list.
Note: You will receive partial credit for each correct selection.
You need to define a grid that meets the following requirements:
• Explicitly sets the width of 6 equal columns of 1 fraction
• Explicitly sets 5 varied sized rows
• Defines 15px of space between each grid column
• Defines 10px between each grid row
Complete the code by selecting the correct option from each drop-down list.
You are given the design for an app. The project manager asks you to outline the steps you must take to release and maintain the app.
Move each step from the list on the left to its correct sequence in the application lifecycle on the right.
Note: You will receive partial credit for each correct response.
You need to correctly apply a style rule for screen devices with a width of 480 pixels or less.
Complete the code by selecting the correct option from the drop-down list.
Review the markup segment. Which entry will validate successfully according to the required pattern?
You want to display a message box showing the user ' s current latitude and longitude as identified by the user’s browser.
Complete the code by selecting the correct option from each drop-down list.
Note: You will receive partial credit for each correct selection.
You define the Pet class as follows:
class Pet {
constructor(name, breed) {
this.name = name;
this.breed = breed;
this.show = function() {
var text = " < p > Your pet ' s name is " + name + " . The pet ' s breed is " + breed + " . < /p > " ;
return text;
};
}
}
You need to derive a Dog class from the Pet class.
Complete the code by selecting the correct option from each drop-down list.
Note: You will receive partial credit for each correct selection.
You create an interface for a touch-enabled application. Some input buttons do not trigger when tapped. What are two possible causes?
Which three methods are associated with the HTML5 localStorage API? Choose 3.
You need to use CSS to create the layout shown:
Review the layout shown on the left.
Complete the markup by selecting the correct option from each drop-down list.
Note: You will receive partial credit for each correct selection.