HTML TAGS
PROGRAMMING OVERVIEW
Tables in HTMLDOM
CSS Design
100

Which tag is used for a title?

h1

100

True or False: HTML, CSS, and Javascript are all Front-end development languages

True

100

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">


100

True or False: Multiple HTML elements can be accessed by ID

False

200

What does the < li > tag do?

Make a bullet

200

What is Javascript used for?

Making animation and content look appealing to the user

200

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


200

True or False: Multiple HTML elements can be accessed by a class

True

300

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   -- >

300

What is HTML used for?

Making tags and adding content 

300

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>

300

True or False: when referencing element with a tag in CSS (i.e. h1 { } ) this influences all elements with that tag

True 

400

Which tag can be used to bold a text? 

a) < strong >

b) < bullet > 

c) < bold > 

d)  < green >

a) < strong >

400

What is CSS used for?

Making content look nicer

400

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.


400

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; 

500

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">

500

What are the three languages of the web?

HTML, CSS, and javascript

500

<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.

500

To set an h1 element to the center, we will use align: center;

False, the correct answer is text-align:center

M
e
n
u