tabel en iframe
Daarin heb ik een iframe neergezet maar het tdtje wat daarna komt word niet weergegeven.
Als ik de iframe weghaal word hij wel neergezet kan iemand mij vertellen wat het probleem zou kunnen zijn?
Code (php)
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_05.gif" width=149 height=402>
</td>
<td><iframe src="main.html" width=465 height=402 name="content" scrolling="auto" frameborder="0"></iframe></td>
<td background="images/index_07.gif" witdh=136 height=402>
</td>
</tr>
</table>
<tr>
<td background="images/index_05.gif" width=149 height=402>
</td>
<td><iframe src="main.html" width=465 height=402 name="content" scrolling="auto" frameborder="0"></iframe></td>
<td background="images/index_07.gif" witdh=136 height=402>
</td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_05.gif" width=149 height=402> </td>
<td><iframe src="main.html" width=465 height=402 name="content" scrolling="auto" frameborder="0"></iframe></td>
<td background="images/index_07.gif" witdh=136 height=402> </td>
</tr>
</table>
Code (php)
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
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
<style>
body {
background-color:#E1EAF4;
}
</style>
<html>
<head>
<title>Psychologische Praktijk Ermelo</title>
</head>
<body topmargin=0 marginwidth=0 marginheight=0>
<center>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_01.gif" width=750 height=54>
<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#000000"><center><b>Menu - Menu - Menu - Menu</b></font></center>
</td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_02.gif" width=66 height=41>
</td>
<td background="images/index_03.gif" width=589 height=41>
</td>
<td background="images/index_04.gif" width=95 height=41>
</td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_05.gif" width=149 height=402> </td>
<td><iframe src="main.html" width=465 height=402 name="content" scrolling="auto" frameborder="0"></iframe></td>
<td background="images/index_07.gif" witdh=136 height=402> </td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_08.gif" width=750 height=19>
</td>
</tr>
</table>
</center>
</body>
</html>
body {
background-color:#E1EAF4;
}
</style>
<html>
<head>
<title>Psychologische Praktijk Ermelo</title>
</head>
<body topmargin=0 marginwidth=0 marginheight=0>
<center>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_01.gif" width=750 height=54>
<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#000000"><center><b>Menu - Menu - Menu - Menu</b></font></center>
</td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_02.gif" width=66 height=41>
</td>
<td background="images/index_03.gif" width=589 height=41>
</td>
<td background="images/index_04.gif" width=95 height=41>
</td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_05.gif" width=149 height=402> </td>
<td><iframe src="main.html" width=465 height=402 name="content" scrolling="auto" frameborder="0"></iframe></td>
<td background="images/index_07.gif" witdh=136 height=402> </td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_08.gif" width=750 height=19>
</td>
</tr>
</table>
</center>
</body>
</html>
Dat deel met <style> moet sowieso in de <head> sectie en niet voor de <html> tag.
En van align="..." en </center> af te komen door CSS te gebruiken :-)