Je hebt geluk, ik niet zoveel te doen.
Je fout zat in het fout gebruiken van 100% (voor width en height), tabellen moet je altijd een grootte opgeven, net zoals de <td>:
hier code:
Home:
code:
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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0052)http://www.netmastering.nl/nlcw2/index.php?ID_Menu=1 -->
<!--
**************************************
** (C)opyright netMastering.nl 2004 **
**************************************
--><HTML><HEAD><TITLE>Welkom op NLCW.nl</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META http-equiv=content-language content=en-us>
<META http-equiv=imagetoolbar content=no>
<META content=all name=robots>
<META content="Copyright (c) 2004 netMastering.nl" name=copyright>
<META content=true name=mssmarttagspreventparsing>
<META content="Branchevereniging Nederlandse Computer Winkels" name=description>
<META
content="Branchevereniging Nederlandse Computer Winkels, nlcw, winkel, winkels, pcshop, computershop, computerstore, pcwinkel, computerwinkel, pcstore, computerstore, samenwerken, brancheorganisatie, samenwerkende computerbedrijven"
name=keywords><LINK href="http://www.netmastering.nl/nlcw2/favicon.ico"
rel="shortcut icon"><LINK media=screen
href="Welkom op NLCW_nl_bestanden/general.css" type=text/css
rel=stylesheet><LINK media=screen href="Welkom op NLCW_nl_bestanden/nlcw.css"
type=text/css rel=stylesheet>
<SCRIPT language=javascript src="Welkom op NLCW_nl_bestanden/general.js"
type=text/javascript></SCRIPT>
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY>
<table height="100%" cellpadding=0 cellspacing=0 border=0 align=center>
<tr><td>
<TABLE cellSpacing=1 cellPadding=0 width=768 align=center border=0>
<TR>
<TD class=logo colSpan=4 width=512> </TD>
<TD class=headerImage1 width=128> </TD>
<TD class=headerImage2 width=128> </TD></TR>
<TR class=menu>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/index.php?ID_Menu=1">Home</A></TD>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/index.php?ID_Menu=2">Leden</A></TD>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/index.php?ID_Menu=3">Partners</A></TD>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/index.php?ID_Menu=1#">Consumenten</A></TD>
<TD width=128> </TD>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/intern/signin.php">Inloggen</A></TD></TR>
<TR class=subHeader>
<TD class=headerBlock width=128> </TD>
<TD class=headerImage3 width=128> </TD>
<TD class=headerImage4 width=128> </TD>
<TD class=headerImage5 width=128> </TD>
<TD class=headerImage6 width=128> </TD>
<TD class=headerImage7 width=128> </TD>
</TR></table>
<TABLE height="100%" cellSpacing=1 cellPadding=0 width=768 align=center border=0>
<TR vAlign=top>
<TD class=leftbar width=128>
<DIV style="BORDER-BOTTOM: white 1px solid; HEIGHT: 21px"></DIV>
</td>
<TD class=content vAlign=top colSpan=4 width=512>
<TABLE cellSpacing=0 cellpadding=0 border=0 width=512 >
<TR>
<TD>
<DIV class=tabArea>
<A class="tab activeTab">Welkom</a>
</DIV>
<TABLE cellPadding=0 cellpadding=0 align=center border=0 >
<TR>
<TD>
<DIV class=box>Welkom op de website van de branchevereniging voor
Nederlandse computerwinkels.<BR>Op deze website vindt u allerlei
informatie over de NLCW, computerwinkels, partners en uiteraard ons
keurmerk. Ook kunt u als consument terecht op <A
href="http://www.computerwinkels.nl/">ComputerWinkels.nl</A> voor
het vinden van uw dichstbijzijnste computerwinkel. </DIV>
<HR>
<DIV class=tabArea><A class="tab activeTab">Laatste nieuws</A>
</DIV>
<DIV class=box>Lorem ipsum dolor sit amet, consectetur adipisicing
elit, sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est
laborum.
</DIV>
</TD></TR>
</TABLE></TD></TR></TABLE>
<TD class=rightbar width=128>
</TD>
</TR>
<TR>
<TD class=copyright colSpan=6 width=768><A
href="http://www.netmastering.nl/nlcw2/cms_signin.php">P</A>owered by <A
href="http://www.netmastering.nl/" target=_blank>netMastering.nl</A>
</TD></TR></TABLE>
</td></tr></table>
</BODY></HTML> |
Partners:
code:
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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0052)http://www.netmastering.nl/nlcw2/index.php?ID_Menu=3 -->
<!--
**************************************
** (C)opyright netMastering.nl 2004 **
**************************************
--><HTML><HEAD><TITLE>Welkom op NLCW.nl</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META http-equiv=content-language content=en-us>
<META http-equiv=imagetoolbar content=no>
<META content=all name=robots>
<META content="Copyright (c) 2004 netMastering.nl" name=copyright>
<META content=true name=mssmarttagspreventparsing>
<META content="Branchevereniging Nederlandse Computer Winkels" name=description>
<META
content="Branchevereniging Nederlandse Computer Winkels, nlcw, winkel, winkels, pcshop, computershop, computerstore, pcwinkel, computerwinkel, pcstore, computerstore, samenwerken, brancheorganisatie, samenwerkende computerbedrijven"
name=keywords><LINK href="http://www.netmastering.nl/nlcw2/favicon.ico"
rel="shortcut icon"><LINK media=screen href="partners_bestanden/general.css"
type=text/css rel=stylesheet><LINK media=screen
href="partners_bestanden/partners.css" type=text/css rel=stylesheet>
<SCRIPT language=javascript src="partners_bestanden/general.js"
type=text/javascript></SCRIPT>
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY>
<table height="100%" cellpadding=0 cellspacing=0 border=0 align=center>
<tr><td>
<TABLE cellSpacing=1 cellPadding=0 border=0 width=768 align=center>
<TR>
<TD class=logo colSpan=4 width=512> </TD>
<TD class=headerImage1 width=128> </TD>
<TD class=headerImage2 width=128> </TD>
</TR>
<TR class=menu>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/index.php?ID_Menu=1">Home</A></TD>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/index.php?ID_Menu=2">Leden</A></TD>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/index.php?ID_Menu=3">Partners</A></TD>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/index.php?ID_Menu=3#">Consumenten</A></TD>
<TD width=128> </TD>
<TD width=128><A href="http://www.netmastering.nl/nlcw2/intern/signin.php">Inloggen</A></TD></TR>
<TR class=subHeader>
<TD class=headerBlock width=128> </TD>
<TD class=headerImage3 width=128> </TD>
<TD class=headerImage4 width=128> </TD>
<TD class=headerImage5 width=128> </TD>
<TD class=headerImage6 width=128> </TD>
<TD class=headerImage7 width=128> </TD>
</TR>
</table>
<TABLE cellSpacing=1 cellPadding=0 width=768 align=center border=0 height="100%">
<TR>
<TD class=leftbar vAlign=top width=128>
<DIV style="BORDER-BOTTOM: white 1px solid; HEIGHT: 21px"></DIV></TD>
<TD class=content vAlign=top colSpan=4 width=512>
<TABLE cellSpacing=0 cellpadding=0 border=0 width=512 >
<TR>
<TD>
<DIV class=tabArea><A class="tab activeTab">Partners</A></DIV>
<TABLE cellPadding=2 cellpadding=0 align=center border=0 >
<TR>
<TD><A href="http://www.nlcw.nl/q8.html"><IMG height=100
alt="" src="partners_bestanden/q8.gif" width=150
border=0></A></TD>
<TD><A href="http://www.nlcw.nl/dissit.html"><IMG height=100
alt="" src="partners_bestanden/dissit.gif" width=150
border=0></A></TD>
<TD><A href="http://www.nlcw.nl/cabos.html"><IMG height=100
alt="" src="partners_bestanden/cabos.gif" width=150
border=0></A></TD></TR>
<TR>
<TD><A href="http://www.nlcw.nl/fuji.html"><IMG height=100
alt="" src="partners_bestanden/fuji.gif" width=150
border=0></A></TD>
<TD><A href="http://www.nlcw.nl/javocom.html"><IMG height=100
alt="" src="partners_bestanden/javocom.gif" width=150
border=0></A></TD>
<TD><A href="http://www.nlcw.nl/qwerty.html"><IMG height=100
alt="" src="partners_bestanden/qwerty.gif" width=150
border=0></A></TD></TR>
<TR>
<TD><A href="http://www.nlcw.nl/verbatim.html"><IMG height=100
alt="" src="partners_bestanden/verbatim.gif" width=150
border=0></A></TD>
<TD><A href="http://www.nlcw.nl/gameworld.html"><IMG
height=100 alt="" src="partners_bestanden/gameworld.gif"
width=150 border=0></A></TD>
<TD><A href="http://www.nlcw.nl/ttg.html"><IMG height=100
alt="" src="partners_bestanden/ttg.gif" width=150
border=0></A></TD></TR>
<TR>
<TD><A href="http://www.nlcw.nl/dealerinfo.html"><IMG
height=100 alt="" src="partners_bestanden/dealerinfo.gif"
width=150 border=0></A></TD>
<TD><A href="http://www.nlcw.nl/interpolis.html"><IMG
height=100 alt="" src="partners_bestanden/interpolis.gif"
width=150 border=0></A></TD>
<TD><A href="http://www.nlcw.nl/tweak.html"><IMG height=100
alt="" src="partners_bestanden/tweak.gif" width=150
border=0></A></TD></TR>
<TR>
<TD><A href="http://www.nlcw.nl/graydon.html"><IMG height=100
alt="" src="partners_bestanden/graydon.gif" width=150
border=0></A></TD>
<TD><A href="http://www.nlcw.nl/hacom.html"><IMG height=100
alt="" src="partners_bestanden/hacom.gif" width=150
border=0></A></TD>
</TR></TABLE></TD></TR></TABLE></TD>
<TD class=rightbar width=128> </TD></TR>
<TR>
<TD class=copyright colSpan=6 width=768><A
href="http://www.netmastering.nl/nlcw2/cms_signin.php">P</A>owered by <A
href="http://www.netmastering.nl/" target=_blank>netMastering.nl</A>
</TD></TR></TABLE>
</td></tr></table>
</BODY></HTML> |