Question : Web site not working correctly with Mozilla, Safari...anything other than IE

We've created this website for our school.  Unfortunately, it won't work properly with just about any browser but IE.  It even works great with IE8..
The top menu bar will not open and some of the lettering is misaligned.
I went to www.validator.w3.org to see what they say and received the following:
_____________________________________________________________________________
"The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation, or other things affecting the output below. If the guess or fallback is incorrect, it could make validation results entirely incoherent. It is highly recommended to check these potential issues, and, if necessary, fix them and re-validate the document.

 No Character Encoding Found! Falling back to UTF-8.

None of the standards sources gave any information on the character encoding labeling for this document. Without encoding information it is impossible to reliably validate the document. As a fallback solution, the "UTF-8" encoding was used to read the content and attempt to perform the validation, but this is likely to fail for all non-trivial documents.

Read the FAQ entry on character encoding for more details and pointers on how to fix this problem with your document.

 Unable to Determine Parse Mode!

The validator can process documents either as XML (for document types such as XHTML, SVG, etc.) or SGML (for HTML 4.01 and prior versions). For this document, the information available was not sufficient to determine the parsing mode unambiguously, because:

the MIME Media Type (text/html) can be used for XML or SGML document types
No known Document Type could be detected
No XML declaration (e.g <?xml version="1.0"?>) could be found at the beginning of the document.
No XML namespace (e.g <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">) could be found at the root of the document.
As a default, the validator is falling back to SGML mode.

 No DOCTYPE found! Checking with default HTML 4.01 Transitional Document Type.

No DOCTYPE Declaration could be found or recognized in this document. This generally means that the document is not declaring its Document Type at the top. It can also mean that the DOCTYPE declaration contains a spelling error, or that it is not using the correct syntax.

The document was checked using a default "fallback" Document Type Definition that closely resembles “HTML 4.01 Transitional”.

Learn how to add a doctype to your document from our FAQ.

 No Character encoding declared at document level

No character encoding information was found within the document, either in an HTML meta element or an XML declaration. It is often recommended to declare the character encoding in the document itself, especially if there is a chance that the document will be read from or saved to disk, CD, etc.

See this tutorial on character encoding for techniques and explanations.

¿ Top

Validation Output: 2 Errors
 Line 1, Column 1: no document type declaration; implying "<!DOCTYPE HTML SYSTEM>"
<html>¿
The checked page did not contain a document type ("DOCTYPE") declaration. The Validator has tried to validate with a fallback DTD, but this is quite likely to be incorrect and will generate a large number of incorrect error messages. It is highly recommended that you insert the proper DOCTYPE declaration in your document -- instructions for doing this are given above -- and it is necessary to have this declaration before the page can be declared to be valid.

 Line 4, Column 7: end tag for "HEAD" which is not finished
</head>¿
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on. "
_____________________________________________________________________________
As I'm new to web site development, I really don't know what to do next. I've attached the code for the main index.htm page.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<link rel="stylesheet" type="text/css" href="longhorncss.css" />
<title>Sugar Hill ES Main Page</title>
<style type="text/css">
#address {
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bold;
	width: 250px;
	font-size: .8em;
	color: #ffffff;
	float: left;
	text-align: left;
}
#address li	{
	list-style-type: none;
}
#address ul {
    Margin-top: 15px;
	margin-left: 7px;
}
#banner  {
width: 1000px;
Height: 150px;
Float: left;
Font-style: Georgia, Times New Roman, serif;
Font-size:3em;
}
body {	
	padding: 0;
	width: 975px;
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bold;
	background-color: #c16100;
	}
#bottombanner {
	margin-top: 10px;
	width: 600px;
	height: 100px;
	Font-style: Georgia, Times New Roman, serif;
	Font-size: 1em;
	text-align: center;
	float: right;
	}
	
img.figure  {
	float: right;
	padding-left: 5px;
	}		
#leftbanner {
	margin-top: 15px;
	margin-left: 290px;
	float: left;
	width: 50;
	height: 100px;
	}
	
#marquee {
	text-align: center;
	font-family: Arial, Helvetica, serif;
	font-size: 1.5em;
	color: #000000;
	width: 500px;
	height: 50px;
	background-color: #ffffff;
	border: 6px double #000000;
	margin-right: 100px;
	float: right;
		}
#schoolpic {
	float: right;
	margin-right: 50px;
	margin-bottom: 10px;
	padding: 10px;
}
		
#screen {
	font-family: Georgia, Arial, Helvetica, sans-serif;
	font-size: .8em;
	text-align: left;
	color: #000000;
	background-color: #ffffff;
	width: 520px;
	height: 500px;
	margin-top: 10px;
	margin-left: 40px;
	padding: 10px;
	border: 6px solid #000000;
		}
	
#teacher_side {
background: url(Longhorn/Assets/images/wantpost.png) no-repeat top;
font-family: Georgia, Times New Roman, serif;
font-size: 1em;
text-align: left;
width: 260px;
float: left;
margin-top: 70px;
padding-bottom: 10px;
padding-left: 25px;
}
#teacher_side li {
	list-style-type: none;
	}
#teacher_side ul {
    Margin-top: 15px;
	margin-left: 7px;
	line-height: 1.2;
}
#teacher_side a {	
text-decoration: none;
color: #c16100;
}
#teacher_side a:hover {
text-decoration: none;
color: #000000;
}
</style>
</head>

<body bgcolor="#c16100">
<ul id="nav">
  <li><a href="#nogo"><strong><font color="000000">PARENTS</font></strong></a></li>
  <!--[if gte IE 7]><!--></a>
  <!--<![endif]-->
  <!--[if lte IE 6]><table><tr><td><![endif]-->
  <ul>
    <li> 
      <div align="left"><a href="files/10-11 Parent Handbook Revised.pdf">Sugar 
        Hill Parent/Student Handbook</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnett.k12.ga.us/gcps-mainweb01.nsf/6E13B53355EF364A8525760100710D80/$file/2009-10_K-3_Student_Parent_Handbook.pdf">GCPS 
        Parent/Student Handbook K-3</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnett.k12.ga.us/gcps-mainweb01.nsf/A2E3C801F82CD2F085257601007119BC/$file/2009-10_4-12_Student_Parent_Handbook.pdf">GCPS 
        Parent/Student Handbook 4-12</a></div>
    </li>
    <li> 
      <div align="left"><a href="school_council.htm">School Council</a></div>
    </li>
    <li> 
      <div align="left"><a href="https://go2.gwinnett.k12.ga.us/parent/wps/portal">Parent 
        Portal</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.wix.com/SHESCounselors/SHEScounselor-homepage">Counselors 
        Corner</a></div>
    </li>
    <li> 
      <div align="left"><a href="Files/SHES Visitation Policy-x.doc">Parent Visitation 
        Policy</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://sugarhillmediacenter.shutterfly.com/">Media</a></div>
    </li>
    <li> 
      <div align="left"><a href="daycare.htm">Daycare Providers</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnett.k12.ga.us/gcps-instruction01.nsf/pages/PromotionandGraduationRequirements">Promotion 
        Criteria</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnett.k12.ga.us/gcps-mainweb01.nsf/78940A76A22C4D458525764D004E9DAA/$file/2009-10_Student-testing_calendar_REVISED_1-11-10.pdf">Testing 
        Calendar</a></div>
    </li>
    <li> 
      <div align="left"><a href="reg_info.htm">Registration Information</a></div>
    </li>
    <li> 
      <div align="left"><a href="https://www.k12studentinsurance.com/">Student 
        Insurance</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.northgwinnettschoolsfoundation.org/index.htm">NorthGwinnett 
        Foundation</a></div>
    </li>
    <li> 
      <div align="left"><a href="FilesforLonghornLinks/Sugar Hill Supply List 10-11.doc">School 
        Supply List Download</a></div>
    </li>
  </ul>
  <!--[if lte IE 6]></td></tr></table></a><![endif]-->
  <li><a href="#nogo"><strong><font color="000000">STUDENTS</font></strong></a></li>
  <!--[if gte IE 7]><!--></a>
  <!--<![endif]-->
  <!--[if lte IE 6]><table><tr><td><![endif]-->
  <ul>
    <li> 
      <div align="left"><a href="files/10-11 Parent Handbook Revised.pdf">Sugar 
        Hill Parent/Student Handbook</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.patrickelementary.org/2009-10%20K-3%20Student%20Parent%20Handbook_FINAL.pdf">GCPS 
        Parent/Student Handbook K-3</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.patrickelementary.org/2009-10%204-12%20Studen%20Parent%20Handbook_FINAL.pdf">GCPS 
        Parent/Student Handbook 4-12</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnett.k12.ga.us/aks.nsf?OpenDatabase&0-&s-mainweb01.nsf">GCPS 
        AKS</a></div>
    </li>
    <li> 
      <div align="left"><a href="longhorn_links.htm">Longhorn Links</a></div>
    </li>
    <li> 
      <div align="left"><a href="clubs_activities.htm">Clubs & Activities</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://sme.gwinnett.k12.ga.us/">SuccessMaker</a></div>
    </li>
    <li> 
      <div align="left"><a href="https://www.georgiaoas.org/servlet/a2l">CRCT 
        Online</a></div>
    </li>
    <li> 
      <div align="left"><a href="online_books.htm">Online Textbooks</a></div>
    </li>
    <li> 
      <div align="left"><a href="school_store.htm">School Store</a></div>
    </li>
    <li> 
      <div align="left"><a href="ice_cream.htm">Ice Cream Sales</a></div>
    </li>
  </ul>
  <!--[if lte IE 6]></td></tr></table></a><![endif]-->
  <li><a href="#nogo"><strong><font color="000000">FACULTY/STAFF</font></strong></a></li>
  <!--[if gte IE 7]><!--></a>
  <!--<![endif]-->
  <!--[if lte IE 6]><table><tr><td><![endif]-->
  <ul>
    <li> 
      <div align="left"><a href="admin.htm">Administration</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.wix.com/SHESCounselors/SHEScounselor-homepage">Counselors 
        Corner</a></div>
    </li>
    <li> 
      <div align="left"><a href="kindergarten.htm">Kindergarten</a></div>
    </li>
    <li> 
      <div align="left"><a href="1st_grade.htm">First Grade</a></div>
    </li>
    <li> 
      <div align="left"><a href="2nd_grade.htm">Second Grade</a></div>
    </li>
    <li> 
      <div align="left"><a href="3rd_grade.htm">Third Grade</a></div>
    </li>
    <li> 
      <div align="left"><a href="4th_grade.htm">Fourth Grade</a></div>
    </li>
    <li> 
      <div align="left"><a href="5th_grade.htm">Fifth Grade</a></div>
    </li>
    <li> 
      <div align="left"><a href="parapros.htm">Parapros</a></div>
    </li>
    <li> 
      <div align="left"><a href="special_education.htm">Special Education</a></div>
    </li>
    <li> 
      <div align="left"><a href="special_areas.htm">Special Areas</a></div>
    </li>
    <li> 
      <div align="left"><a href="technology.htm">Technology</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://sugarhillmediacenter.shutterfly.com/">Media</a></div>
    </li>
    <li> 
      <div align="left"><a href="support_staff.htm">Support Staff</a></div>
    </li>
    <li> 
      <div align="left"><a href="office_staff.htm">Office Staff</a></div>
    </li>
  </ul>
  <!--[if lte IE 6]></td></tr></table></a><![endif]-->
  <li><a href="#nogo"><strong><font color="000000">TEACHER LINKS</font></strong></a></li>
  <!--[if gte IE 7]><!--></a>
  <!--<![endif]-->
  <!--[if lte IE 6]><table><tr><td><![endif]-->
  <ul>
    <li> 
      <div align="left"><a href="Files/LEAVE FORM .pdf">Sugar Hill Leave Form</a></div>
    </li>
    <li> 
      <div align="left"><a href="https://go.gwinnett.k12.ga.us/app/wps/portal">Go 
        Gwinnett</a></div>
    </li>
    <li> 
      <div align="left"><a href="https://go.gwinnett.k12.ga.us/app/wps/portal">GCPS 
        Elements</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://streaming.discoveryeducation.com/">Discovery 
        Education</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnettonlinecampus.com/">Gwinnett 
        Online Campus</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnettk12online.net/ec/crs/default.learn?CourseID=3039050&CPURL=www.gwinnettk12online.net&Survey=1&47=4001211&ClientNodeID=404494&coursenav=0&bhcp=1">2000-2004 
        Exemplars</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnettk12online.net/ec/crs/default.learn?CourseID=3039050&CPURL=www.gwinnettk12online.net&Survey=1&47=4001211&ClientNodeID=404494&coursenav=0&bhcp=1">Kindergarten 
        Exemplars</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://gwinnettk12online.net/ec/Courses/31133/CRS-OTHR-3039050/diff_math/start_here.htm">Differentiated 
        Best of Math Exemplars I</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://gwinnettk12online.net/ec/Courses/31133/CRS-OTHR-3039050/start_here.htm">Differentiated 
        Best of Math Exemplars II</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://gwinnettk12online.net/ec/Courses/31133/CRS-OTHR-3039050/diff_math_3/start_here.htm">Best 
        of Math Exemplars II</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnettk12online.net/ec/crs/default.learn?CourseID=3039050&CPURL=www.gwinnettk12online.net&Survey=1&47=4001211&ClientNodeID=404494&coursenav=0&bhcp=1">Gwinnett 
        Math Online Resource (MOCC)</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnettk12online.net/ec/crs/default.learn?CourseID=3039050&CPURL=www.gwinnettk12online.net&Survey=1&47=4001211&ClientNodeID=404494&coursenav=0&bhcp=1">Big 
        20</a></div>
    </li>
    <li> 
      <div align="left"><a href="la_access.htm">Directions for Accessing LA Online 
        Resource</a></div>
    </li>
    <li> 
      <div align="left"><a href="http://www.gwinnett.k12.ga.us/LanguageartsES.nsf">Gwinnett 
        LA Online Resource</a></div>
    </li>
    <!--[if gte IE 7]><!--></a>
    <!--<![endif]-->
    <!--[if lte IE 6]><table><tr><td><![endif]-->
  </ul>
  <!--[if lte IE 6]></td></tr></table></a><![endif]-->
 <li><a href="http://www.google.com/calendar/embed?height=600&amp;wkst=1&amp;bgcolor=%23FFFFFF&amp;src=t9vv980d3f7vkto0qeda2u83ag%40group.calendar.google.com&amp;color=%23B1440E&amp;src=en.usa%23holiday%40group.v.calendar.google.com&amp;color=%232952A3&amp;ctz=America%2FNew_York"><strong><font color="000000">SCHOOL CALENDAR</font></strong></a></li>
  <!--[if gte IE 7]><!--></a>
  <!--<![endif]-->
  <!--[if lte IE 6]><table><tr><td><![endif]-->
  <!--[if lte IE 6]></td></tr></table></a><![endif]-->
  <li><a href="#nogo"><strong><font color="000000">SCHOOL NEWSLETTER</font></strong></a></li>
  <!--[if gte IE 7]><!--></a>
  <!--<![endif]-->
  <!--[if lte IE 6]><table><tr><td><![endif]-->
  <ul>
    <li> 
      <div align="left"><a href="file:///C|/Sites/link54.htm">August</a></div>
    </li>
    <li> 
      <div align="left"><a href="file:///C|/Sites/link55.htm">September</a></div>
    </li>
  </ul>
  <!--[if lte IE 6]></td></tr></table></a><![endif]-->
  <li><a href="#nogo"><strong><font color="000000">CAFETERIA</font></strong></a></li>
  <!--[if gte IE 7]><!--></a>
  <!--<![endif]-->

  <!--[if lte IE 6]><table><tr><td><![endif]-->
  <ul>
    <li> 
      <div align="left"><a href="https://www14.mealpayplus.com/default.aspx">Meal 
        Pay</a></div>
    </li>
    <li> 
      <div align="left"><a href="file:///C|/Sites/link57.htm">Lunch Menu</a></div>
    </li>
    <li> 
      <div align="left"><a href="file:///C|/Sites/link58.htm">Breakfast Menu</a></div>
    </li>
    <li> 
      <div align="left"><a href="file:///C|/Sites/link59.htm">Nutrition Facts</a></div>
    </li>
    <li> 
      <div align="left"><a href="file:///C|/Sites/link60.htm">Nutrition Nuggets</a></div>
    </li>
  </ul>
    <!--[if gte IE 7]><!-->
    </a> 
    <!--<![endif]-->
    <!--[if lte IE 6]><table><tr><td><![endif]-->
<li><a href="http://sugarhillelementaryphotogallery.shutterfly.com/"><strong><font color="000000">PHOTO GALLERY</font></strong></a></li>

</ul>
<div id="banner"> 
            <p align="left"><font color="#FFFFFF" size=10em>Sugar Hill Elementary 
              <img src="Longhorn/Assets/images/White%20longhorn%20on%20orange.jpg" 
	width="186" height="85" hspace="100" align="absmiddle"></font> <font size="6" ><font color="#FFFFFF" size="5">LEARN 
              &#8226; LEAD &#8226; SUCCEED</font></font><font color="#FFFFFF" size="4"></align></font> 
</div>
<div id="schoolpic">
<img src="Longhorn/Assets/images/Sugarhill.jpg" width="600" height="179">
</div>
<div id="address">
						<ul>
							<li>939 Level Creek Road</li>
            			   	<li>Sugar Hill, GA 30518</li>
							<li>&nbsp;</li>
            			   	<li>Phone:(770) 945-5735</li>
            			   	<li>Fax:(770) 932-7241</li>
							<li>&nbsp;</li>
            			   	<li>School Starts: 8:15 AM</li>
            				<li>School Ends: 2:45 PM</li>
							<li>&nbsp;</li>
            				<li>Principal: Mrs. Chris Godfrey</li>
						</ul>
</div>

<!------------------------------------------------------------------------------------------------------->
<div id="marquee"><em>Latest News</em> 
  <marquee behavior="scroll" direction="left" onmouseover="this.stop();" onmouseout="this.start();">
  <font color="#c16100" size="+1">New and returning students may pick up registration 
  packets in the front office Monday - Thursday from 8 AM - 4 PM<font color="#FFFFFF">&#8212;&#8212;&#8212;</font> 
  Click here to check out <a href="Files/Lanier_HS_Open_House.htm">Lanier High 
  School's Community Open House</a> on Saturday, July 17th</font> 
  </marquee></div> 
<!------------------------------------------------------------------------------------------------------->		  
<div id="teacher_side"> 
  <ul>
    <li>
      <div align="center"><strong><font size="+1">QUICK LINKS</font></strong></div>
    </li>
				<li><a href="http://www.gwinnett.k12.ga.us/gcps-mainweb01.nsf">GCPS Home Page</a></li>
              	<li><a href="school_info.htm">School Information</a></li>
              	<li><a href="upcoming.htm">Upcoming Events</a></li>
              	<li><a href="files/10-11 Parent Handbook Revised.pdf">Parent/Student Handbook</a></li>
              	<li><a href="https://www.georgiaoas.org/servlet/a2l">CRCT Online</a></li>
              	<li><a href="https://go2.gwinnett.k12.ga.us/parent/wps/portal">Parent Portal</a></li>
              	<li><a href="online_books.htm">Online Textbooks</a></li>
              	<li><a href="http://www.wix.com/SHESCounselors/SHEScounselor-homepage">Counseling Department</a></li>
              	<li><a href="technology.htm">Technology</a></li>
              	<li><a href="clubs_activities.htm">Clubs & Organizations</a></li>
              	<li><a href="http://www.sugarhillpta.com/">PTA</a></li>
	            <li><a href="http://sugarhillmediacenter.shutterfly.com/">Media</a></li>
              	<li><a href="http://www.lanierms.org/index.php">Lanier Middle School</a></li>
              	<li><a href="http://www.lanierhs.org">Lanier High School</a></li>
				<li>&nbsp;</li>
							</ul>
</div>

<!----------------------------------------------------------------------------------------------------------->
<div id="screen"> <img src="Longhorn/Assets/images/chrisg.jpg" width="125" height="109" class="figure"> 
  <h4 align="center">Welcome to <br>Sugar Hill Elementary! </h4><!--MAKE CHANGES HERE-->
<p>I am so glad that you have chosen to view our new website. Sugar Hill Elementary is a school with a rich heritage 
and an exciting future. I am dedicated to continuing the commitment to academic excellence that is the cornerstone of this school. 
</p><p>My name is Chris Godfrey and I am thrilled to be the principal of Sugar Hill Elementary! It is both an honor and 
a privilege to serve this community. I have been in education for fifteen years. Of those years, ten have been with 
Gwinnett County Public Schools. I have served as an assistant principal for the last four years, most recently at 
Patrick Elementary in Buford. I have a master's degree in Reading and Literacy and a specialist degree in Educational Leadership.  
I live in Gwinnett County with my husband, son, and two dogs.  </p>
<p>Our focus at Sugar Hill is helping ALL of our students achieve at high academic levels. Our motto is Learn, Lead, and Succeed! 
As you will see from our website, there are many exciting things going on each and every day at Sugar Hill. 
After experiencing the school through our website, we invite you for a visit to our campus. We are very proud of our students and 
staff and would love to have the opportunity to talk with you about the wonderful learning that occurs here every day!</p>
<p>Proud principal,<br> <br>
Chris Godfrey
</p>
</div>

<!----------------------------------------------------------------------------------------------------------->
<div id="leftbanner">
		<img src="Longhorn/Assets/images/GCPS%20Logo.JPG" width="47" height="114"/>
</div>
<div id="bottombanner">
		<img src="Longhorn/Assets/images/Be%20There%20Logo.JPG" width="107" height="114" class="figure">
		*This website contains one or more links that are outside the GCPS network. GCPS does not control the content of these pages.<br><br>
		<a href="mailto:[email protected]">Contact the Webmaster about Website problems</a>
</div>
</body>
</html>

Answer : Web site not working correctly with Mozilla, Safari...anything other than IE

In simple words,

* While storing records in your table use SELECT GETUTCDATE() instead of GETDATE()
* While retrieving records from the table use
SELECT dateadd(ss, DATEDIFF(ss, GETUTCDATE(), GETDATE()), ur_date_column)

Random Solutions  
 
programming4us programming4us