100%
What does HTML stand for? - ANSWERHypertext Markup Language
Which CSS selector can be used to select all elements with the class "intro"? -
ANSWER.intro {...}
What is the name of the organization that develops the primary web standards of HTML
and CSS? - ANSWERThe World Wide Consortium (W3C)
Where in an HTML document is the correct place to refer to an external style sheet? -
ANSWERIn the <head> section.
True or False. The following HTML tags will create a table with 3 rows of two columns
each.
<table> <tr> <td> a </td> <td> b </td> </tr> <tr> <td> c </td> <td> d </td> </tr></table> -
ANSWERFalse
Which of the following is a correct format for a hyperlink to the Terry College web site? -
ANSWER<a href="http://www.terry.uga.edu">The Terry College of Business</a>
What is the correct CSS syntax for setting the background of the page black? -
ANSWERbody {background-color: black;}
What CSS syntax will add a background color for all <h1> elements? - ANSWERh1
{background-color:#FFFFFF;}
Which HTML tags would be used to define a bulleted list? - ANSWER<ul>...</ul>
Match the Web Standards concern (Style, Structure, Behavior) with the Web Standards
technology (HTML, CSS, JavaScript) that is best for handling that concern. -
ANSWERHTML - Structure; CSS - Style; JavaScript - Behavior
What CSS statements will display a border with the following characteristics:
The top border = 10 pixels
The bottom border = 5 pixels
The left border = 20 pixels
The right border = 1pixel? - ANSWERborder-width: 10px 1px 5px 20px;
Which HTML tag would be used to create a drop-down list? -
ANSWER<select>...</select>