READ Free Dumps For Microsoft- 70-480
Question ID 14908 | You are developing an HTML5 page.
You need to add author and copyright information.
Which tag should you use?
|
Option A | <aside>
|
Option B | <header>
|
Option C | <footer>
|
Option D | <section>
|
Correct Answer | C |
Explanation Explanation: The footer element represents a footer for its nearest ancestor sectioning content or sectioning root element. A footer typically contains information about its section such as who wrote it, links to related documents, copyright data, and the like. Reference: The footer element http://dev.w3.org/html5/spec-preview/the-footer-element.html
Question ID 14909 | 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 CSS style should you use?
|
Option A | Text-shadow: 72pt 0pt 5pt
|
Option B | Text-shadow: 5px lin 0px;
|
Option C | Text-shadow: 72pt 0em 5px;
|
Option D | Text-shadow: 100px 0px 5px;
|
Correct Answer | B |
Explanation Explanation: We set the second argument (vertical) to one inch (1in). Note Syntax text-shadow: h-shadow v-shadow blur color; Note: The text-shadow property attaches one or more shadows to text. The property is a comma-separated list of shadows, each specified by 2 or 3 length values and an optional color. Omitted lengths are 0. * h-shadow Required. The position of the horizontal shadow. Negative values are allowed * v-shadow Required. The position of the vertical shadow. Negative values are allowed * blur Optional. The blur distance * color Optional. The color of the shadow.