Solutions Rated A+
image tag - <img src="swag.jpg" alt="me" id="swag">
link a picture to an image - <a href="default.jpg"> <img src="smile.jpg"
alt="smile"> </a>
How are tables defined? - with <table> tag
What divides tables into table rows? - <tr>
Table rows are divided into table data with what? - <td>
What is a heading tag for rows? - <th>
What is a code for 2X3 table? - <table>
<tr>
<th> Yolo</th>
<th>Swag</th>
<th>attack</th>
</tr>
<tr>
<td>What</td>
<td>Is</td>
, <td>Up</td>
</tr>
</table>
If you wanted a column to span across multiple columns what would you
use? - <td colspan="2">
If you wanted a row to span multiple rows what would you use? - <td
rowspan="2">
Why do we make images smaller? - images are made smaller so the page
loads faster
Name the 3 possible shapes for an image map - circle, rect or poly
What are the circle coords? - "x, y,radius"
What ties an image to the map? - usemap
Write an example of a circle image map linking to google - <map
name=bubble>
<area shape="circle" alt="go to google" title="Link to Google"
href="http://www.google.com" coords="238,228,29"><img alt="kid with
bubble blower" src="Ethan.jpg" usemap="#bubble">
What are HTML forms used for? give tag - to collect user input
<form></form>
Most important form element? - <input>