Archivlink: javarea.de Forum > (X)HTML & CSS (allgemein) > Pagedarstellung
Vollständigen Link anzeigen: javarea.de Forum > (X)HTML & CSS (allgemein) > Pagedarstellung
Pages: [1]
| geschrieben von BundeHund am 12.10.2004 - 20:08 |
hallo leute...geht mal auf http://www.13th.biz/2/index2.html
also im ie siehts so aus wie ichs möchte..
aber im mozilla ist das menüiframe oben rechts in der ecke!
und im opera ist das inhaltiframe einbisschenverschoben...aber das menü stimmt
meine frage:
was ist an diesem code falsch..oder was muss ich daran ändern???
ich bin ein totaler anfänger..und habe nicht gerade viel ahnung...also ich bitte um hilfe
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
| Zitat | | | <html>
<head>
<title>::w³.13th[dot]biz::</title>
<script type="text/javascript">
function showImage(obj, pic) {
obj.src = pic;
}
</script>
<style type="text/css">
<!--
/* General layout */
; }
a:active {text-decoration: none; color: #000000;font-family:arial;
font-size:8pt; }
A:link {text-decoration: none; color: #000000;
font-family:arial;
font-size:8pt;}
A:visited {text-decoration: none; color: #000000;
font-family:arial;
font-size:8pt;}
A:hover {text-decoration: none; color: #3b3b3b; font-style: normal;
font-family:arial;
font-size:8pt; text-decoration: none;}
body {
font-size:8pt;
margin: 0px;
padding: 0px;
scrollbar-face-color: #F0E412;
scrollbar-shadow-color: ##F0E412;
scrollbar-highlight-color: #F0E412;
scrollbar-3dlight-color: #F0E412;
scrollbar-darkshadow-color: #F0E412;
scrollbar-track-color: #F0E412;
scrollbar-arrow-color: #62615B;
font-family: Comic Sans MS;
background-image: url("http://www.13th.biz/2/bg.JPG");
}
td {border: 1px #000000; border-color: #000000;
font-size: 8pt;
}
body{
}
-->
</style>
</head>
<body scroll="no">
<TABLE height=510 cellSpacing=0 cellPadding=0 width=600 background=http://www.13th.biz/2/entwurf.JPG border=0>
<TBODY>
<TR vAlign=top align=right>
<TD vAlign=center align=right width=510><IFRAME style="BORDER-RIGHT: #ffffff 1px solid; BORDER-TOP: #ffffff 1px solid; FILTER: alpha(opacity=100); BORDER-LEFT: #ffffff 1px solid; WIDTH: 142px; BORDER-BOTTOM: #ffffff 1px solid; HEIGHT: 161px" border=0 name=menu src="http://www.13th.biz/menu.html" frameBorder=0></iframe> </TD>
<TD vAlign=center align=center>
</TD></TR>
<TR vAlign=top align=left>
<TD vAlign=top align=center><IFRAME style="BORDER-RIGHT: #ffffff 1px solid; BORDER-TOP: #ffffff 1px solid; FILTER: alpha(opacity=100); BORDER-LEFT: #ffffff 1px solid; WIDTH: 388px; BORDER-BOTTOM: #ffffff 1px solid; HEIGHT: 178px" border=0 name=inhalt src="http://www.13th.biz/inhalt.html" frameBorder=0></iframe> </TD></TR></TBODY></TABLE></IFRAME></P></TD></TR></TBODY></TABLE>
</body>
</html>
|
danke
|
| geschrieben von Martin am 13.10.2004 - 12:59 |
Ave,
da die Anzahl und Art der Fehler im Script ganze Geschichtsbände füllen würde, beschränke ich mich auf einen allgemeinen Hinweis auf die selfHTML Dokumentation von Stefan Münz . Welche selbst für Anfänger sehr hilfreich ist.
| Zitat | | |
<html>
<head>
<title>::w³.13th[dot]biz::</title>
<script type="text/javascript">
function showImage(obj, pic) {
obj.src = pic;
}
</script>
<style type="text/css">
<!--
/* General layout */
; }
a:active {text-decoration: none; color: #000000;font-family:arial;
font-size:8pt; }
A:link {text-decoration: none; color: #000000;
font-family:arial;
font-size:8pt;}
A:visited {text-decoration: none; color: #000000;
font-family:arial;
font-size:8pt;}
A:hover {text-decoration: none; color: #3b3b3b; font-style: normal;
font-family:arial;
font-size:8pt; text-decoration: none;}
body {
font-size:8pt;
margin: 0px;
padding: 0px;
scrollbar-face-color: #F0E412;
scrollbar-shadow-color: ##F0E412;
scrollbar-highlight-color: #F0E412;
scrollbar-3dlight-color: #F0E412;
scrollbar-darkshadow-color: #F0E412;
scrollbar-track-color: #F0E412;
scrollbar-arrow-color: #62615B;
font-family: Comic Sans MS;
background-image: url("http://www.13th.biz/2/bg.JPG");
}
td {border: 1px #000000; border-color: #000000;
font-size: 8pt;
}
body{
}
-->
</style>
</head>
<body scroll="no">
<table width="600" height="510" cellspacing="0" cellpadding="0" background="entwurf.JPG" border="0">
<tr>
<td width=100%></td>
<td><iframe style="border: 1px solid #ffffff; FILTER: alpha(opacity=100); width:142px; height: 161px;" border=0 name=menu src="menu.html" frameBorder=0></iframe> </td>
</tr>
<tr>
<td colspan=2>
<iframe style="border: #ffffff 1px solid; FILTER: alpha(opacity=100); WIDTH: 388px; HEIGHT: 178px;" border=0 name=inhalt src="inhalt.html" frameBorder=0></iframe>
</td>
</tr>
</table>
</body>
</html>
|
knowlegde: http://de.selfhtml.org
mfg martin |
|