What is the form a HTML comment?
a. <!-- Comment --!>
b. / Comment
c. /* Comment */
d. <!--Comment --> - ANSWERd. <!--Comment -->
Which heading tags produce text that is smaller than the normal size text? -
ANSWERh5, h6
What is the difference in behavior between a group of radio buttons and checkbox
buttons? - ANSWERIn a group of radio buttons, you can only select one from the
group. Checkbox buttons allow you to select multiple choices
Name 3 different controls that can be created with an <input> tag -
ANSWERPasswords, Checkboxes, and Text Input
What does HTML stand for? - ANSWERHypertext Markup Language
What does the action property of an HTML <form> specify? - ANSWERThe action
property specifies where to send the data submitted in the form.
Which of the following tags is empty?
a. h1
b. img
c. hr
d. body - ANSWERc. hr
fill in the blank:
<title> Week ________ - ANSWER</title>
fill in the blanks:
<ul>
____Item 1____
</ul - ANSWER<li></li>
T/F <tbody> is a required element of every table. - ANSWERfalse
Explain the CSS Box Model. - ANSWERThe CSS Box Model is a way to view the
spacing around content in HTML. Each element is like a box and has a variety of
areas that can be spaced around it. Immediately around the content is the padding,
after the padding is the border, and lastly, the margin is between the border and the
next element. The width of these can all be controlled in CSS. The padding and the
margin are transparent.