CSS
Which of the following is NOT an advantage of using CSS, particularly external CSS? a. Increase web page download time b. allow easier site-wide formatting/layout changes c. Reduce the size of the HTML files d. improve formatting consistency across web site e. all of the above are advantages of CSS
"all of the above are advantages of CSS" BUT i think that's wrong it's probably supposed to be "Increase web page download time"
Which of the following is the correct syntax for a comment/remark in CSS? Select one: a. /* Navigation Menu */ b. // Navigation Menu c. / Navigation Menu / d. # Navigation Menu
/* Navigation Menu */ (it has the * between the / and Navigation)
Which of the following is the valid HTML code to link an HTML file to an CSS file? Select one: a. <href rel="stylesheet" type="text/css" link="style.css"> b. <style src="style.css"> c. <link rel="stylesheet" type="text/css" href="style.css"> d. <stylesheet="style.css"></style>
<link rel="stylesheet" type="text/css" href="style.css">
CSS stands for which of the following? Select one: a. Coding and Style Sheets b. Color Style Sheets c. Cascading Style Sheet d. Coding Smart Sheets
Cascading Style Sheet
From the CSS presentation, which type of CSS is recommended as having the most advantages? a. Inline b. External c. Professional d. Internal
External
The following code represents the use of which kind of CSS? <p style="color:blue;">This is a paragraph</p> Select one: a.X Embedded b. Inline c. External d. Inside e. Integrated
Inline
Which of the following are the three main types of CSS? Select one: a. Inline, Integrated and External b. Internal, Internal/embedded and External c. Integrated, External and Linked d. Inline, Internal/Embedded, and External
Inline, Internal/Embedded, and External
What CSS technology allows one to use different CSS code for different devices and conditions, e.g. screen, tablet, smart phone, different resolutions, printer, television, etc. (choose best answer)? Select one: a. detection queries b. browser queries c. Media queries d. device queries e. user queries
Media queries
CSS is typically used for which of the following? a. To add content and images to a web page b. To provide formatting and layout to a web page c. To provide security to a web site d. To provide dynamic programming to a web page, e.g. shopping cart
To provide formatting and layout to a web page
Which is the correct CSS syntax to display hyperlinks without an underline? Select one: a. a {decoration: no-underline;} b. a {underline: none;} c. a {text-decoration: none;} d.X a {text-underline: none;}
a {text-decoration: none;}
In the CSS code below, which is an example of a property? h1 {color: black;text-align: center;} a. color b. black c. h1 d. center
color
Which CSS property is used to assign paragraph text to Arial? Select one: a. font-display b. font-family c. font d. font-face e. font-type
font-family
Which of the following is the correct syntax to center a heading in CSS? Select one: a. { h2=text-align: center; } b. <h2 text-align: center> c. h2 { text: center; } d. h2 { text-align: center; }
h2 { text-align: center; }
Which of the following is valid CSS syntax? Select one: a. {p: color=black); b. p: color=black; c. {p: color=black;} d. p {color: black;}
p {color: black;}