Web Standards Quiz
Which of the following CSS selectors can be used to select all elements with the class "intro"?
.intro {...}
In order from inside to the outside, what are the components of the CSS box model?
1 Content 2 Padding 3 Border 4 Margin
Which of the following is a correct format for a hyperlink to the Terry College Web Site?
<a href="http://www.terry.uga.edu">The Terry College of Business</a>
Which of the following HTML tags makes text content a heading with the largest size?
<h1>...</h1>
Which of the following is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
Which of the following HTML tags will create a button that when clicked will cause the action of a form to be implemented?
<input type="submit" name="submit" value="Go" />
Which of the following HTML tags is correct for making a textbox that is named "age"?
<input type="text" name="age" />
Which of the following is a correct tag for connecting an HTML page to an external style sheet?
<link ref="stylesheet" type="text/css" href="styles.css">
Which of the following HTML tags would be used to create a drop-down list?
<select>...</select>
Which HTML tag is used to specify an internal style sheet?
<style>...</style>
Which of the following HTML tags would be used to define a bulleted list?
<ul>...</ul>
Which of the following CSS will add a background color for all <h1> elements?
h1 {background-color:#FFFFFF;}
Where in an HTML document is the correct place to refer to an external style sheet?
In the <head> section
Which of the following is the correct CSS syntax for setting the background of the page black?
body { background-color: black; }
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>
false
How do you display a border like this: The top border = 10 pixels The bottom border = 5 pixels The left border = 20 pixels The right border = 1pixel?
border-width:10px 1px 5px 20px;
What does CSS stand for?
Cascading Style Sheets
Which of the following is a possible value to using the CSS position attribute to style an HTML element? (select all that apply)
Fixed, Absolute, and Relative
What s the name of the organization that develops the primary web standards of HTML and CSS?
World Wide Consortium (W3C)
What does HTML stand for?
hypertext markup language