Which CSS style should you use?

You are developing an HTML5 page that includes several paragraph elements. You have the following requirements: • Add a drop shadow that is one inch below the text in the paragraph • Set the radius of the drop shadow to five pixels You need to style the paragraphs to meet...

November 1, 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 . <span>B . <nav>C . <cable>D . <section>View AnswerAnswer: D Explanation: The <section> tag defines sections in a document. Such as...

October 31, 2018 No Comments READ MORE +

Which values are 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 values are valid for the text-transform property?A . hiddenB . blinkC . capitalizeD . line-throughView AnswerAnswer: C Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Example Transform text in different elements: h1 {text-transform:uppercase;}...

October 31, 2018 No Comments READ MORE +

Which code segment should you use?

HOTSPOT You are creating a web worker for an HTML5 application. The following tasks must be performed from within the web worker: • Register an event listener for the web worker • Start and stop the web workerYou need to define a function that performs the required tasks. Which code...

October 31, 2018 No Comments READ MORE +

How should you develop the form?

HOTSPOT 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 used in the email address. You need to implement...

October 30, 2018 No Comments READ MORE +

Which CSS segment should you use?

You are developing a web page. You create a grid layout by using the following CSS segment. You have the following requirements: • You must place content in the first column of the second row. • The content must span two columns. You need to ensure that the style of...

October 29, 2018 No Comments READ MORE +

Which line of code should you use?

You are developing an HTML5 web page. The appearance of the text box must change when a user moves the focus to another element on the page. You need to develop the page to respond to user action. Which line of code should you use?A . <input type="text" onblur="resetStyle(this);" />B...

October 29, 2018 No Comments READ MORE +

How should you write the code?

HOTSPOT You are developing an online shopping application that accepts credit cards for payment. If the credit card number is invalid, the application must: Generate an error Assign "200" to the error number Assign "Invalid" to the error description You need to write the code that meets the requirements. How...

October 27, 2018 No Comments READ MORE +

Which code segment should you use?

You are developing a customer web form that includes the following HTML. <input id="txtValue" type="text" /> A customer must enter a valid age in the text box prior to submitting the form. You need to add validation to the control. Which code segment should you use? A . Option AB...

October 26, 2018 No Comments READ MORE +

Which code segment should you use?

You are creating a JavaScript object that represents an employee. You need to extend the Employee object by adding the GetPayroll() method. You need to ensure that all future instances of the Employee object implement the GetPayroll() method. Which code segment should you use? A . Option AB . Option...

October 26, 2018 No Comments READ MORE +