Erroneous.
This part should'nt be in the head section:
Code:
<font size=5><b>Welcome to ITC<align ="center"/><b>
Also, these are deprecated 
To name of deprecated attributes and elements that you used:
The fix is to go through CSS:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>dynamicMarquee</title>
<style type="text/css">
.header{
font-size:20pt;
font-weight:bold;
text-align:center;
display:block;
}
body{
background:#fff;
}
</style>
</head>
<body>
<div id="wrap">
<span class="header">Welcome to ITC</span>
<!--url's used in the movie-->
<!--text used in the movie-->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="900" height="400" id="dynamicMarquee" align="top">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="dynamicMarquee.swf" />
<param name="quality" value="best" />
<param name="scale" value="noscale" />
<param name="bgcolor" value="#ffffff" />
<embed src="dynamicMarquee.swf" quality="best" scale="noscale" bgcolor="#ffffff" width="550" height="440" name="dynamicMarquee" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
</body>
</html>
Edit: Nile, you beat me through it
...also, Nile, you missed closing your h2 tag:
Code:
<h2 style="font-weight:bold;text-align:center">Welcome to ITC</h3>
...and closes it with the </h3> tag 
See if it helps
Bookmarks