| View previous topic :: View next topic |
| Author |
Message |
AssaultM16
Joined: 28 Feb 2008 Posts: 7
|
Posted: Thu Feb 28, 2008 2:00 am Post subject: Not workinng in IE |
|
|
Hello!. I am having a problem. I have created a web page. I can see it in Mozilla Firefox but in Internet Explorer the page appears blank.
Here is the HTML code:
| Code: |
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> Liceo Facil!</html>
<meta name="descripton" content=" Hello"/>
<meta name="keywords" content="Hello"/>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<p id="header">
<img src ="hello.jpg"
align ="left" width="168" height="130">
<h1 id="title">
Hello
</h1>
</p>
<div id="navigation">
<ul>
<li><a href="test.html">Home</a></li>
<br />
<li><a href="test1.html">Resumenes</a></li>
</ul>
</div>
<div id="content">
<p> Hello.</p>
</div>
</body>
</html>
|
And here is the CSS:
| Code: |
#navigation {
position: absolute;
width: 15em;
left: 0;
top: 155px;
font-weight: bold;
float: left;
background: #66CCFF;
padding-bottom: 1000px;
border: 2px solid #000;
}
#content {
position: absolute;
margin-left: 15em;
top: 140px;
font-weight: bold;
}
#header {
border: 2px solid #000;
position: absolute;
float: left;
background: #FF9933;
padding-right: 900px;
padding-bottom: 5px;
padding-left: 25px;
left: 0px;
top: 0px;
}
#title {
text-decoration: overline;
position: absolute;
color: red;
left: 420px;
font-size: 400%;
top: 10px;
}
|
|
|
| Back to top |
|
 |
|
|
AssaultM16
Joined: 28 Feb 2008 Posts: 7
|
Posted: Thu Feb 28, 2008 2:14 am Post subject: Re: Not workinng in IE |
|
|
| Stupid error. Fixed |
|
| Back to top |
|
 |
rangana 250+ Club

Joined: 27 Feb 2008 Posts: 439 Location: Cebu City Philippines
|
Posted: Thu Feb 28, 2008 2:43 am Post subject: Re: Not workinng in IE |
|
|
Glad to know you find the fix yourself..but could you post what made the fix?..
As far as I can tell, your html page's tag is not in the proper postion. You've closed your <title> tag with a </html> tag.  |
|
| Back to top |
|
 |
|