D276 Web Dev Foundations
1. A language that requires few plug-ins and standardizes how video and audio are presented on a webpage.:
HTML5
2. A style sheet language that provides the formatting and "look" of a Webpage or document written in a markup
language: CSS
3. A scripting language used to provide interactivity within a webpage.: Java script
4. A markup language used for structuring and presenting webpage content-
: HTML5
5. Creates all web standards.: World Wide Web Consortium (W3C)
6. Which of the following is an example of how to add a hyperlink using HTML?: <a
href="index.html">Home</a>
7. True or False? JavaScript code needs to reside inside HTML documents to run: False
8. :
9. What is a document that is viewed in a web browser?: Webpage
10.The element is used to contain meta tags, links to style sheets, and the title element: <head>...</head>
11.The declaration identifies the version of HTML used to create the webpage: doctype
12.The element is used to specify information about the document, such as a character set, author, and
viewport: <meta>
13.The element contains the entire document code: <html></html>
14.The element identifies the document title.: <title>...</title>
15.The element contains all visible webpage content: <body>...</body>
16.True or False? HTML comments should be used to inform others about important elements used with in
the webpage code: true
17.True or False? HTML comments should be used to ensure that the addition of random white space will not
affect rendering in browsers: false
18.True or False? HTML comments can be used to remind yourself why you inserted a particular piece of
code: true
19.True or False? HTML comments can be used to disable code to see how a page will appear without a
particular markup element: true
20.Which of the following are examples of empty, or void, element tags? Select all that apply: <br> <hr> <img..>
<meta>
21.According to the HTML Living Standard, what defines the minimal parts of an HTML document?: <!
DOCTYPE html>, <html>, <head>, <meta>, <title>, and
<body>
22.To see how a webpage is constructed, a user can view the page source in the browser.: true
1/6
, D276 Web Dev Foundations
23.In web development, what is a deprecated feature?: Part of a language that is officially discouraged because
newer or better features exist.
24.True or false? Whitespace is an unprinted character such as the spaces between words and lines of text.:
True
25.True or false? Good practice is to use the <br>, or line break, element to add space or control formatting
of a webpage: false
26.True or false? The <br> tag has a closing tag: false
27.How many heading element tags are there?: 6
28.Which HTML element should be nested within a <ul>...</ul> or <ol>...</ol> element for each item in a list?:
<li>...</li>
29.True or false? An ordered list (<ol>...</ol>) should be used for a bulleted list of items: false
30.Which CSS property should be used to change the bullet used in an unordered list and offers more
numbering options in an ordered list?: - list-style-type
31.What is an HTML structure that allows data to be organized in rows and columns?: <table>...</table>
32.Which HTML element creates a table row, which contains all of the row cells?: <tr>...</tr>
33. A table cell can be forced to span multiple columns within a table when a
attribute is used.: colspan
34.If I want the content within a table cell (<td>...</td>) to span multiple rows of a table, I should use the
attribute: rowspan
35.Select the three optional table tags that browsers may use to allow scrolling of the table body
independently from the table header and table footer: <thead>...</thead>
36.True or false? The <img> element is a void element with no closing tag: true
37.What is a mandatory attribute that specifies the URL of an image file to display?: src
38. Which <img> attribute is not mandatory but to include it is a best practice?-
: alt
39.What HTML element is used to include a picture in a webpage?: <img>
40.True or false? The width attribute and height attribute are optional <img> attributes that tell the browser
how many pixels the image should occupy.: - True
41.Select the three popular image formats supported by web browsers: GIF (Graphics Interchange Format)
JPEG (Joint Photographic Experts Group) PNG (Portable
Network Graphics)
2/6
1. A language that requires few plug-ins and standardizes how video and audio are presented on a webpage.:
HTML5
2. A style sheet language that provides the formatting and "look" of a Webpage or document written in a markup
language: CSS
3. A scripting language used to provide interactivity within a webpage.: Java script
4. A markup language used for structuring and presenting webpage content-
: HTML5
5. Creates all web standards.: World Wide Web Consortium (W3C)
6. Which of the following is an example of how to add a hyperlink using HTML?: <a
href="index.html">Home</a>
7. True or False? JavaScript code needs to reside inside HTML documents to run: False
8. :
9. What is a document that is viewed in a web browser?: Webpage
10.The element is used to contain meta tags, links to style sheets, and the title element: <head>...</head>
11.The declaration identifies the version of HTML used to create the webpage: doctype
12.The element is used to specify information about the document, such as a character set, author, and
viewport: <meta>
13.The element contains the entire document code: <html></html>
14.The element identifies the document title.: <title>...</title>
15.The element contains all visible webpage content: <body>...</body>
16.True or False? HTML comments should be used to inform others about important elements used with in
the webpage code: true
17.True or False? HTML comments should be used to ensure that the addition of random white space will not
affect rendering in browsers: false
18.True or False? HTML comments can be used to remind yourself why you inserted a particular piece of
code: true
19.True or False? HTML comments can be used to disable code to see how a page will appear without a
particular markup element: true
20.Which of the following are examples of empty, or void, element tags? Select all that apply: <br> <hr> <img..>
<meta>
21.According to the HTML Living Standard, what defines the minimal parts of an HTML document?: <!
DOCTYPE html>, <html>, <head>, <meta>, <title>, and
<body>
22.To see how a webpage is constructed, a user can view the page source in the browser.: true
1/6
, D276 Web Dev Foundations
23.In web development, what is a deprecated feature?: Part of a language that is officially discouraged because
newer or better features exist.
24.True or false? Whitespace is an unprinted character such as the spaces between words and lines of text.:
True
25.True or false? Good practice is to use the <br>, or line break, element to add space or control formatting
of a webpage: false
26.True or false? The <br> tag has a closing tag: false
27.How many heading element tags are there?: 6
28.Which HTML element should be nested within a <ul>...</ul> or <ol>...</ol> element for each item in a list?:
<li>...</li>
29.True or false? An ordered list (<ol>...</ol>) should be used for a bulleted list of items: false
30.Which CSS property should be used to change the bullet used in an unordered list and offers more
numbering options in an ordered list?: - list-style-type
31.What is an HTML structure that allows data to be organized in rows and columns?: <table>...</table>
32.Which HTML element creates a table row, which contains all of the row cells?: <tr>...</tr>
33. A table cell can be forced to span multiple columns within a table when a
attribute is used.: colspan
34.If I want the content within a table cell (<td>...</td>) to span multiple rows of a table, I should use the
attribute: rowspan
35.Select the three optional table tags that browsers may use to allow scrolling of the table body
independently from the table header and table footer: <thead>...</thead>
36.True or false? The <img> element is a void element with no closing tag: true
37.What is a mandatory attribute that specifies the URL of an image file to display?: src
38. Which <img> attribute is not mandatory but to include it is a best practice?-
: alt
39.What HTML element is used to include a picture in a webpage?: <img>
40.True or false? The width attribute and height attribute are optional <img> attributes that tell the browser
how many pixels the image should occupy.: - True
41.Select the three popular image formats supported by web browsers: GIF (Graphics Interchange Format)
JPEG (Joint Photographic Experts Group) PNG (Portable
Network Graphics)
2/6