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;}...
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...
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 the requirements....
Which CSS3 style should you use?
You are developing a web page by using HTML5. You have the following requirements: • An H1 element must be placed at the top left corner of the page. • The size and location of the H1 element must not change if additional elements are added to the page. You...
Which two actions will achieve this goal?
You are developing a web application that consumes services from a third-party application. A web worker processes the third-party application requests in the background. A page in the application instantiates the web worker process. You need to establish two-way communications between the web worker process and the page. Which two...
Which lines of code should you use?
You are developing an HTML5 page that has an element with an ID of logo. The page includes the following HTML. <div> Logo:<br> <div id="logo"> </div> </div> You need to move the logo element lower on the page by five pixels. Which lines of code should you use? (Each correct...
Which line or lines of code should you use?
DRAG DROP You are developing an airline reservation website by using HTML5 and JavaScript. A page on the site allows users to enter departure and destination airport information and to search for tickets. You have the following requirements: • Users must be able to save information in the application about...
How should you build the code?
DRAG DROP You are developing a web page that will be accessed from various types of devices. • You have the following requirements: • The appropriate display resolution must be selected dynamically based on the device that is connecting to the page. • Mobile devices with a maximum width of...
Which tag should you use?
You are developing an HTML5 page. You need to add author and copyright information. Which tag should you use?A . <aside>B . <header>C . <footer>D . <section>View AnswerAnswer: C Explanation: The footer element represents a footer for its nearest ancestor sectioning content or sectioning root element. A footer typically contains...
Which line of code should you insert at line 03?
You are developing a web page that enables customers to upload documents to a web server. The page includes an HTML5 PROGRESS element named progressBar that displays information about the status of the upload. The page includes the following code. (Line numbers are included for reference only.) An event handler...