Which tag is used for a title?
h1
True or False: HTML, CSS, and Javascript are all Front-end development languages
True
What table element attribute do you need to specify to add a border to a table?
1) <table border="0">
2) <table border="on">
3) <table border="1">
4) <table border="yes">
3) <table border="1">
True or False: Multiple HTML elements can be accessed by ID
False
What does the < li > tag do?
Make a bullet
What is Javascript used for?
Making animation and content look appealing to the user
The colspan and rowspan attributes of the <td> and <th> tags specify the number of columns and rows, respectively, that a certain element occupies. What is that element?
1) A table cell
2) A table caption
3) A table border
4) A table header
2) A table caption
True or False: Multiple HTML elements can be accessed by a class
True
Which of the following is a comment in HTML?
a) < !-- This is a comment -- >
b) #This is a comment
c) .This is a comment
d) */ this is a comment */
< !-- This is a comment -- >
What is HTML used for?
Making tags and adding content
Which of the following table element tags are required when you use the <table> tag to create a table?
1) Table header <th> and table data <td>
2) Table row <tr> and table data <td>
3) Table caption <caption> and table header <th>
4) Table caption <caption> and table data <td>
2) Table row <tr> and table data <td>
True or False: when referencing element with a tag in CSS (i.e. h1 { } ) this influences all elements with that tag
True
Which tag can be used to bold a text?
a) < strong >
b) < bullet >
c) < bold >
d) < green >
a) < strong >
What is CSS used for?
Making content look nicer
By default, content in a table header cell is aligned:
1) Both horizontally and vertically to the center of the cell.
2) horizontally to the left and vertically to the top of the cell.
3) horizontally to the right and vertically to the center of the cell.
4) horizontally to the left and vertically to the center of the cell.
1) Both horizontally and vertically to the center of the cell.
To a set a list to upper roman numerals, which of the following CSS styles should be used?
a) list-style-type: square;
b) list-style-type: upper-roman
c) list-style-type: lower-roman;
d) list-style-type: upper-roman;
d) list-style-type: upper-roman;
Select the correct HTML element to define an input field?
1) <input type="text">
2) <form type="text">some text</form>
3) <text>some text</text>
4) <textarea>some text </textarea>
1) <input type="text">
What are the three languages of the web?
HTML, CSS, and javascript
<tr><th colspan="3">Site Development Associate</th></tr>
Which choice most accurately describes the result of the code?
1) The heading is located in a cell whose width is 30 percent of the width of the page.
2) The heading is located in a cell in the third column of the table.
3) The heading is located in a cell that is three inches wide.
4) The heading is located in a cell that spans three columns of the table.
4) The heading is located in a cell that spans three columns of the table.
To set an h1 element to the center, we will use align: center;
False, the correct answer is text-align:center