1Td is declaring a new cell, as explained in basics. The style="background-color:#FFFF00" is telling the browser what color to display the cell as; #FFFF00 would be yellow; you also could write in yellow. For more on colors, view our color codes page.
The above image is three different images put in a table that is at 100% of the section of the screen. Below is the source code used for the above example.
The most important part of the above is the first line with style="width:100%" attribute. The style indicates the table needs to be 100% of the open screen or container.
One way to post images and text right next to each other is to use a table. The below source code shows how we did the above. We condensed our statement to make it look less intimidating.
STATEMENT SHOWN ABOVE
The style=“vertical-align:top” tells the browser to align the starting of the text at the top of the image. The vertical-align property can also be one of: middle, bottom, text-top, text-bottom, baseline, sub, super, and several others.