Home
Flashcards
Preview
Web Applications Tutorial 1
Home
Get App
Take Quiz
Create
What is a markup language?
A. a language used for e-commerce websites
B. a language introduced by Microsoft for use in web browsers
C. a language describing the content and structure of a document by tagging document elements
D. a language that defines the appearance of web pages for computers and cell phones
C. a language describing the content and structure of a document by tagging document elements
WordPress is a:
A. web framework
B. text editor
C. web content management system
D. web browser
C. web content management system
What does W3C stand for?
A. World Wide Web Corporation
B. World Wide Web Consortium
C. World Wide Web Creators
D. World Wide Web Computing
B. World Wide Web Consortium
Which of the following is the proper form of an HTML 5 doctype?
A. <doctype html>
B. <doctype>html</doctype>
C. <!DOCTYPE html>
D. <DOCTYPE html>
C. <!DOCTYPE html>
Which of the following defines the page title for an HTML document?
A. <pageTitle>My Web Page</title>
B. <head id="title">My Web page</title>
C. <title>My Web Page</title>
D. <titleStart>My Web Page</titleEnd>
C. <title>My Web Page</title>
Which of the following is
not
proper HTML syntax?
A. <p>Welcome to my <em>web page</em> </p>
B. <p> <em>
C. <em> <p>Welcome to my web page</em> </p>
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>
Which of the following defines "restaurant" as a search keyword for a web page?
A. <meta name="keywords" content="restaurant" />
B. <meta>restaurant</meta>
C. <meta keyword="restaurant" type="search" />
D. <keyword>restaurant</keyword>
A. <meta name="keywords" content="restaurant" />
Which of the following uses the proper syntax for creating an HTML comment?
A. <!-- Home page for my personal website -->
B. <! Home page for my personal website>
C. <comment>Home page for my personal website</comment>
D. // Home page for my personal website
A. <!-- Home page for my personal website -->
True or False: HTML describes how content should be rendered by the browser.
A. True
B. False
B. False
Which of the following marks a heading with the second level of importance?
A. <heading2>Gourmet Thai Cooking</heading2>
B. <h2>Gourmet Thai Cooking</h2>
C. <h level="2">Gourmet Thai Cooking</h>
D. <hLevel2>Gourmet Thai Cooking</hLevel2>
B. <h2>Gourmet Thai Cooking</h2>
Prior to HTML 5, sections were identified with:
A. the article element and the section attribute
B. the section element and the name attribute
C. the div element and the id attribute
D. the aside element and the id attribute
C. the div element and the id attribute
To mark content that is related to the main article, use
A. the extraContent element
B. the aside element
C. the sidebar element
D. the section element
B. the aside element
Which of the following marks the content as emphasized text?
A. <strong>Daily Special</strong>
B. <em>Daily Special</em>
C. <b>Daily Special</b>
D. <i>Daily Special</i>
B. <em>Daily Special</em>
Which of the following should be used to mark the text string "H2SO4"?
A. H<lower>2</lower>SO<lower>4</lower>
B. H<code>2</code>SO<code>4</code>
C. H<sup>2</sup>SO<sup>4</sup>
D. H<sub>2</sub>SO<sub>4</sub>
D. H<sub>2</sub>SO<sub>4</sub>
Which of the following links the HTML file to the CSS style sheet file, mystyles.css?
A. <stylesheet src="mystyles.css" />
B. <stylesheet rel=link">mystyles.css</mystyles>
C. <link href="mystyles.css" rel="stylesheet" />
D. <link rel'"stylesheet">mystyles.css</link>
C. <link href="mystyles.css" rel="stylesheet" />
Which of the following tags might be used to indicate a change of topic within a section?
A. <hr />
B. <aside />
C. <br />
D. <img />
A. <hr />
Which character reference is used to insert a nonbreaking space within a text string?
A.
B. &ws;
C. &space;
D. ©
A.
Which of the following tags inserts an inline image with the alternative text "Art World"?
A. <figure src="awlogo.png" alt="Art World" />
B. <img src="awlogo.png">Art World</img>
C. <image src="awlogo.png" alt="Art World" />
D. <img src="awlogo.png" alt="Art World" />
D. <img src="awlogo.png" alt="Art World" />
Which of the follow tags is not used to mark a list?
A. <li> ... </li>
B. <ul> ... </ul>
C. <ol> .. </ol>
D. <dl> ... </dl>
A. <li> ... </li>
To have an ordered list count down from 100, which attributes should you use?
A. down start="100"
B. reversed from="100"
C. decrease start="100"
D. reversed start="100"
D. reversed start="100"
Lists of hypertext links should be enclosed within what tags?
A. <links> ... </links>
B. <nav> ... </nav>
C. <dl> ... </dl>
D. <a> ... </a>
B. <nav> ... </nav>
To link text to the website https://www.mobilepanini.com, use the tag:
A. <a href=" https://www.mobilepanini.com"> ... </a>
B. <a link="https://www.mobilepanini.com"> ... </a>
C. <link a=" https://www.mobilepanini.com"> ... </link>
D. <a src= " https://www.mobilepanini.com"> ... </a>
A. <a href=" https://www.mobilepanini.com"> ... </a>
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
B. ./catering/ct_catering.html
C. /catering/ct_catering.html
D. ct_catering.html
A. ../catering/ct_catering.html
What tag can be used to define the starting point for relative paths?
A. <start />
B. <a> ... </a>
C. <base />
D. <link />
C. <base />
Which tag should you use to mark the h1 heading with the location topHeading?
A. <h1 id="TopHeading">Mobile Panini</h1>
B. <h1 id=topHeading">Mobile Panini</h1>
C. <a href="topHeading"></a><h1>Mobile Panini</h1>
D. All of the above
D. All of the above
To link to the email address sajja@example.com, use the URL:
A. mail:sajja@example.com
B. sms:sajja@example.com
C. mailto:sajja@example.com
D. fax:sajja@example.com
C. mailto:sajja@example.com
To link to the phone number 970-555-0002, use the URL:
A. phone:9705550002
B. call:9705550002
C. tel:9705550002
D. dial:9705550002
C. tel:9705550002
Author
jdavis123
ID
359488
Card Set
Web Applications Tutorial 1
Description
Updated
10/3/2022, 1:14:59 AM
Show Answers
Home
Flashcards
Preview