Skip to content Skip to sidebar Skip to footer

Html Page Printing Incorrectly

I am printing a javascript calendar in the middle of this page, for some reason when I run this code the Address block prints above the table where the calendar prints. I need the

Solution 1:

Looks like you didn't close the table tag, put this below the </script> line: </table>

Solution 2:

Just adding address to div tag. Like this.

<html><head></head><body><divid="head"><imgstyle="float: right; border: 1px solid orange"src="photo.jpg"alt="" /><imgsrc="ccc.jpg"alt="Chamberlain Civic Center" /></div><divid="links"><table><tr><td><ahref="#">Home</a></td><td><ahref="#">Tickets</a></td><td><ahref="#">Events</a></td><td><ahref="#">Directions</a></td><td><ahref="#">Hours</a></td><td><ahref="#">Calendar</a></td><td><ahref="#">Tour</a></td><td><ahref="#">Contact Us</a></td></tr></table></div><divid="main"><h1>Yearly Calendar</h1><tableid='yearly_table'><tr><thid='yearly_title'colspan='4'></th></tr><scripttype="text/javascript">
  yearly();
  </script></div><div><address>
  The Chamberlain Civic Center &nbsp;&#183;&nbsp;
  2011 Canyon Drive &nbsp;&#183;&nbsp;
  Chamberlain, SD 57325 &nbsp;&#183;&nbsp;
  (800) 555-8741
  </address></div></body></html>

Post a Comment for "Html Page Printing Incorrectly"