Which value is valid for the text-transform property?

You are developing an HTML5 web application and are styling text. You need to use the text-transform CSS property. Which value is valid for the text-transform property?A . redB . hiddenC . lowercaseD . italicView AnswerAnswer: C Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Example Transform text in different elements: h1 {text-transform:uppercase;}...

November 26, 2018 No Comments READ MORE +

How should you build the code segment?

DRAG DROP You are creating a function by using JavaScript. The function accepts an object as the parameter and returns a string that identifies the data type of the object. You have the following requirements: • The function must return "Number" if the object is a number • The function...

November 26, 2018 No Comments READ MORE +

How should you develop the form?

DRAG DROP You are developing a form that captures a user's email address by using HTML5 and jQuery. The form must capture the email address and return it as a query string parameter. The query string parameter must display the @ symbol that is used in the email address. You...

November 24, 2018 No Comments READ MORE +

Which illustration should you submit?

HOTSPOT You are developing an HTML5 application for a company. You apply the following style to a DIV element on a page. You need to submit a draft illustration of the results of this code. Which illustration should you submit? (To answer, select the appropriate illustration in the answer area.)...

November 24, 2018 No Comments READ MORE +

Which code segment should you use to replace the Loader function?

You are developing an HTML5 web application that displays the current temperature whenever a button is clicked. The following code provides this functionality. When the temperature is loaded, the status property on the loader instance does not change. You need to ensure that the status property on the loader instance...

November 24, 2018 No Comments READ MORE +

Which code segment should you use?

You are developing a customer web form that includes following HTML. <input id="txtValue"/> You need to develop the form so that customers can enter only a valid country code consisting of three English alphabet characters. Which code segment should you use? A . Option AB . Option BC . Option...

November 23, 2018 No Comments READ MORE +

Which HTML should you use?

You are developing a customer web form that includes the following HTML. <input id="txtValue"/> You need to change the HTML markup so that customers can enter only a valid three-letter country code. Which HTML should you use?A . <input id="txtValue" type="code" />B . <input id="txtValue" type="text" pattern=" [A-Za-z] {3}" />C...

November 21, 2018 No Comments READ MORE +

Which code segments should you use?

You are creating a class named Consultant that must inherit from the Employee class. The Consultant class must modify the inherited PayEmployee method. The Employee class is defined as follows. function Employee() {} Employee.prototype.PayEmployee = function ( ){ alert('Hi there!'); } Future instances of Consultant must be created with the...

November 20, 2018 No Comments READ MORE +

Which tag should you use?

You are modifying a blog site to improve search engine readability. You need to group relevant page content together to maximize search engine readability. Which tag should you use?A . <tbody>B . <article>C . <div>D . <span>View AnswerAnswer: B Explanation: The <article> tag specifies independent, self-contained content. An article should...

November 20, 2018 No Comments READ MORE +

Which value is valid for the text-transform property?

You are developing an HTML5 web application and are styling text. You need to use the text-transform CSS property. Which value is valid for the text-transform property?A . CapitalizeB . RedC . 20pxD . ItalicView AnswerAnswer: A Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Example Transform text in different elements: h1 {text-transform:uppercase;}...

November 18, 2018 No Comments READ MORE +