Term
What does HTML stand for?
A. HyperText Markup Language
B. Home Tool Markup language
C. Hyperlinks and Text Markup Language |
|
Definition
|
|
Term
Who is making the Web standards?
A. Mozilla
B. Microsoft
C. The World Wide Web Consortium |
|
Definition
|
|
Term
Choose the correct HTML tag for the largest heading
A. <head>
B. <h6>
C. <h1>
D. <heading> |
|
Definition
|
|
Term
What is the correct HTML tag for inserting a line break?
A. <lb />
B. <br />
C. <break /> |
|
Definition
|
|
Term
What is the correct HTML for adding a background color?
A. <body style="background-color:yellow">
B. <body background="yellow">
C. <background>yellow</background> |
|
Definition
|
|
Term
Choose the correct HTML tag to make a text bold
A. <bold>
B. <b> |
|
Definition
|
|
Term
Choose the correct HTML tag to make a text italic
A. <i>
B. <italic> |
|
Definition
|
|
Term
What is the correct HTML for creating a hyperlink?
A. <a name="http://www.w3schools.com">W3Schools.com</a>
B. <a url="http://www.w3schools.com">W3Schools.com</a>
C. <a href="http://www.w3schools.com">W3Schools</a>
D. <a>http://www.w3schools.com</a>
|
|
Definition
|
|
Term
How can you create an e-mail link?
A. <a href="xxx@yyy">
B. <mail href="xxx@yyy">
C. <a href="mailto:xxx@yyy">
D. <mail>xxx@yyy</mail> |
|
Definition
|
|
Term
How can you open a link in a new browser window?
A. <a href="url" new>
B. <a href="url" target="_blank">
C. <a href="url" target="new"> |
|
Definition
|
|
Term
Which of these tags are all <table> tags?
A. <table><tr><tt>
B. <table><head><tfoot>
C. <thead><body><tr>
D. <table><tr><td> |
|
Definition
|
|
Term
Choose the correct HTML to left-align the content inside a tablecell
A. <td align="left">
B. <tdleft>
C. <td leftalign>
D. <td valign="left"> |
|
Definition
|
|
Term
How can you make a list that lists the items with numbers?
A. <list>
B. <ol>
C. <ul>
D. <dl> |
|
Definition
|
|
Term
How can you make a list that lists the items with bullets?
A. <ol>
B. <list>
C. <ul>
D. <dl>
|
|
Definition
|
|
Term
What is the correct HTML for making a checkbox?
A. <input type="checkbox" />
B. <input type="check" />
C. <check>
D. <checkbox> |
|
Definition
|
|
Term
What is the correct HTML for making a text input field?
A. <input type="textfield" />
B. <input type="text" />
C. <textfield>
D. <textinput type="text" /> |
|
Definition
|
|
Term
What is the correct HTML for making a drop-down list?
A. <list>
B. <select>
C. <input type="list" />
D. <input type="dropdown" /> |
|
Definition
|
|
Term
What is the correct HTML for making a text area?
A. <input type="textarea" />
B. <textarea>
C. <input type="textbox" /> |
|
Definition
|
|
Term
What is the correct HTML for inserting an image?
A. <img>image.gif</img>
B. <img href="image.gif />
C. <image src="image.gif" />
D. <img src="image.gif" /> |
|
Definition
|
|
Term
What is the correct HTML for inserting a background image?
A. <background img="background.gif">
B. <body background="background.gif">
C. <img src="background.gif" background /> |
|
Definition
|
|