You are currently viewing html linkedin assessment answers
html linkedin assessment answers_theanswershome

html linkedin assessment answers

1. What is the absolute URL for a webpage called page.html that includes the base tag below?

<base href="http://www.linkedin.com/dir/">

  • http://www.linkedin.com/page.html
  • http://www.linkedin.com/dir/page.html
  • page.html
  • dir/page.html

2. What is the most semantically accurate way to mark up this sentence?
(Note: "TLAs" stands for "three-letter acronyms.")
We are fond of our TLAs in web design.

3. What is the purpose of the class attribute?

  • Classes allow CSS to select specific elements on the page. You may list as many class names within the class attribute as you wish, separated by spaces.
  • Classes allow CSS to select specific elements on the page. You may list only one class name per class attribute.
  • Classes allow CSS and JavaScript to select specific elements on the page. You may list as many class names within the class attribute as you wish, separated by spaces.
  • Classes allow CSS and JavaScript to select specific elements on the page. You may list only one class name per class attribute.

4. Which example is missing a mandatory closing tag, making it invalid?

  • <ul><li>Simple list</li>
  • <ul><li>Simple list</ul>
  • <p>Simple paragraph
  • <dl><dt>Simple term<dd>Simple description</dl>

5. What is the backward-compatible method of turning a circle in an SVG into a link?

6. A white paper has a sidebar and endnotes, both of which are complementary to the main text. How would you mark them up to make their distinct roles more broadly accessible?

7. The value attribute is associated with which set of tags?

  • <button>
    <input>
    <form>
  • <li>
    <input>
    <option>
  • <input>
    <label>
    <meter>
  • <input>
    <option>
    <textarea>

8. Users report that a form is not working. What is the culprit?

  • The fieldset is disabled.
  • There is no method set on the form.
  • The form element is disabled.
  • There is no <input type=”submit”> element.

9. What is the best semantic markup for this sentence? On July 21, 1969, Neil Armstrong said, "That's one small step for man, one giant leap for mankind."

10. A designer gave you CSS code that should run only when the device rendering the page is in dark mode. How would you embed that code?

11. What should fill the blank in this HTML code?

  • type
  • rel
  • enctype
  • media

12. Which video example will autoplay in most browsers?

  • <video src=”video.mp4″ background></video>
  • <video sr=”video.mp4″ autoplay=”force”></video>
  • <video src=”video.mp4″ autoplay></video>
  • <video src=”video.mp4″ autoplay muted></video>

13. What is the correct way to add a submit URL to a button element?

14. When should you use the

  • for anything you want to move to the side, like a pull quote box, a sidebar, or an image with text wrapping around it
  • for anything in a sidebar
  • for anything in parentheses
  • when the content can be removed without detracting from the page’s message

15. When is the < link > tag used?

  • when linking style sheets, external URLs, and favicons
  • when linking style sheets, JavaScript, and icons for mobile apps
  • when linking one webpage to another
  • when linking style sheets, favicons, and preloading assets

Leave a Reply