| A | B |
| What is the first element in an xhtml file? | Doctype |
| What is the 2nd element in a xhtml file? | Html Tag |
| What is the first of the two SECTIONs that you code in an XHTML webpage | <head> |
| What is the closing tab of the second of the two SECTIONS that you must code in an XHTML webpage? | </body> |
| What is the larger header element? | <h1> |
| What element will place a thin line across your webpage? | <hr /> |
| What element will place a blank line between lines of text on your webpage? | <br /> |
| How do you create a comment in XHTML? | <! |
| What is the ELEMENT that will allow you to link to another website. (Enter just the ELEMENT name - not any of it's attributes.) | <a |
| What attribute of the link element specifies the url of the website you want to link to? (Enter just the ATTRIBUTE name - not the element.) | href |
| What ATTRIBUTE of the linking element do you code to be sure that the linked-to webpage opens in a new tab and does not close your webpage before linking? | target name="_blank" |
| Code the ELEMENT and ATTRIBUTE needed to add images. | <img src= |
| Which attribute of the image element allows you to re-size how tall an image will display on your webpage? | height= |
| Which attribute of the image element allows you to re-size how wide an image will display on your webpage? | width= |
| What is the element (and attribute) that will create a table with lines outlining the outside of the table? | <table border |
| What element allows you to add a title to your XHTML table? | <caption> |
| What element allows you to add data to your XHTML table? | <td> |
| Which do you code first when creating a table? <td> <tr> or <th> | <tr> |
| What is the unordered list tag? | <ul> |
| What is the ordered list tag? | <ol> |
| What does <li> stand for? | list item |
| What element creates a heading or title for the webpage - seen only in the web browser's banner or on a tab? | <title> |
| Are XHTML statements coded in upper case or lower case? | lower |
| True or False - Nesting means close outer elements before closing inner elements? | FALSE |
| When I am coding a website if I leave 4 blank lines between lines of code will the blank line be recognized by the browser and actually show on my website? | no |
| Looking at the essential elements how many ofthe essential elements have both opening and closing tags? | 4 |
| When you create an ordered list what is the last tag you would code to end the list? | </ol> |
| This attribute of the image tag lets a blind person's screen reader know what the image is about | alt |
| True of False - Anchor text refers to the part of a link that the user sees on the website and clicks on to go to the linked page? | TRUE |
| True of False - The image tag is not a self-closing tag? | False |
| True of False - Attribute values are always enclosed in quotes? | true |
| True of False - All elements must have an opening and closing tag unless they are self-closing elements? | true |
| All content visible to the user is coded in which of the two mandatory SECTIONS of a webpage? | <body> |