Web Applications Tutorial 1

  1. What is a markup language?




    C. a language describing the content and structure of a document by tagging document elements
  2. WordPress is a:




    C. web content management system
  3. What does W3C stand for?




    B. World Wide Web Consortium
  4. Which of the following is the proper form of an HTML 5 doctype?




    C. <!DOCTYPE html>
  5. Which of the following defines the page title for an HTML document?




    C. <title>My Web Page</title>
  6. Which of the following is not proper HTML syntax?




        Welcome to my
        web page
        </em> </p>
    D. <p>Welcome to my
        <em>web page</em>
        </p>
    C. <em> <p>Welcome to my web page</em> </p>
  7. Which of the following defines "restaurant" as a search keyword for a web page?




    A. <meta name="keywords" content="restaurant" />
  8. Which of the following uses the proper syntax for creating an HTML comment?




    A. <!-- Home page for my personal website -->
  9. True or False: HTML describes how content should be rendered by the browser.

    A. True
    B. False
    B. False
  10. Which of the following marks a heading with the second level of importance?




    B. <h2>Gourmet Thai Cooking</h2>
  11. Prior to HTML 5, sections were identified with:




    C. the div element and the id attribute
  12. To mark content that is related to the main article, use




    B. the aside element
  13. Which of the following marks the content as emphasized text?




    B. <em>Daily Special</em>
  14. Which of the following should be used to mark the text string "H2SO4"?




    D. H<sub>2</sub>SO<sub>4</sub>
  15. Which of the following links the HTML file to the CSS style sheet file, mystyles.css?




    C. <link href="mystyles.css" rel="stylesheet" />
  16. Which of the following tags might be used to indicate a change of topic within a section?




    A. <hr />
  17. Which character reference is used to insert a nonbreaking space within a text string?




    A. &nbsp;
  18. Which of the following tags inserts an inline image with the alternative text "Art World"?




    D. <img src="awlogo.png" alt="Art World" />
  19. Which of the follow tags is not used to mark a list?




    A. <li> ... </li>
  20. To have an ordered list count down from 100, which attributes should you use?




    D. reversed start="100"
  21. Lists of hypertext links should be enclosed within what tags?




    B. <nav> ... </nav>
  22. To link text to the website https://www.mobilepanini.com, use the tag:




    A. <a href=" https://www.mobilepanini.com"> ... </a>
  23. Using Figure 1-40, the relative path going from the ct_about.html file to the ct_catering.html file is:




    A. ../catering/ct_catering.html
  24. What tag can be used to define the starting point for relative paths?




    C. <base />
  25. Which tag should you use to mark the h1 heading with the location topHeading?




    D. All of the above
  26. To link to the email address sajja@example.com, use the URL:




    C. mailto:sajja@example.com
  27. To link to the phone number 970-555-0002, use the URL:




    C. tel:9705550002
Author
jdavis123
ID
359488
Card Set
Web Applications Tutorial 1
Description
Updated