login  Naam:   Wachtwoord: 
Registreer je!
 Forum

Website - tabellen (Opgelost)

Offline Rlove - 26/05/2009 18:45 (laatste wijziging 26/05/2009 18:53)
Avatar van RloveNieuw lid Beste crew,

ik ben hier sinds kort op deze site. (Tot nu toe GEWELDIGE site!)
Ik heb al veel info gevonden hier wat ik nodig had/heb voor mijn website. Alleen ik loop op iets vast. mijn website bestaat uit tabbellen. (Zie code hier onder.) Maar nou is mijn probleem: Ik wil dat de tekst van "Mastermind the game & Hangman the game" over het gehele stuk wat over is wordt geplaatst. Dus
je krijgt eerst de titel van "Welcome on my site" enz. En dan een menu dat van links naar rechts en naar beneden gaat. Dus in vergelijking met deze website: menutjelinks/rechts--> "snel vragen"&"scripts"&"Tutorials"&"etc" en naar beneden: "beginpagina"&"nieuwartikels"&"links"&"FAQ"&"etc"(beetje kronkel gezegd maar als ik een plaatje had had ik het makkelijker kunnen uitleggen.) en dus de tekst kunnen neer plaatsen in de overige ruimte (in het midden en rechts). Ik hoop dat u het snapt...

  1. <body bgcolor="#000000", text="#FFFFFF">
  2.  
  3. <table width="100%" border ="1", bordercolor="#FFFFFF", cellspacing="0", cellpadding="0">
  4. <tr>
  5.  
  6. <td colspan="2" align= "center"> <div id="top"><p> <h1>Welcome on my site!</h1> </div></font></p>
  7.  
  8. <div id="topp"><p> I hope you will enjoy the game's!</div></td>
  9. </table>
  10.  
  11. <TABLE BORDER="1", ALIGN="left", WIDTH=100%, , height= 10%, cellspacing="0", cellpadding="3">
  12. <TR>
  13.  
  14. <TD><a href="How-Mastermind.html"><h4>How I made Mastermind(NL)</h4></a></TD>
  15.  
  16. <TD><a href="How-Hangman.html"><h4>How I made Hangman(NL)</h4></a></TD>
  17.  
  18. <TD><a href="proef.html"><h4>The problems that I must deal with Mastermind (NL)</h4></a></TD>
  19.  
  20. <TD><a href="proef2.html"><h4>The problems that I must deal with Hangman (NL)</h4></a></TD>
  21.  
  22. <TD><a href="Gegevensinvul.html"><h4>Observation, problem or .... --> Contact me!</h4></a></TD>
  23. </TR>
  24. </table>
  25.  
  26. <table width=30% border = 1, bordercolor="#FFFFFF", cellspacing="0", cellpadding="0">
  27.  
  28. <p> <tr >
  29. <td ><a href="MASTERMIND.HTML"> <h4><div id="home"> Home</h4></div></a></td>
  30. <td rowspan="6"><div id="GameOver">
  31. <h3>Mastermind the GAME!! </h3>
  32. <h4> & </h4>
  33. <h3> Hangman the GAME</h3> </div>
  34. </td> </tr>
  35.  
  36. <tr > <td><a href="proef3.html"><h4>Play Mastermind!!
  37. </h4></a></td>
  38.  
  39. <tr > <td><a href="proef4.html"><h4>Play Hangman!!</h4></a></td>
  40.  
  41. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Mastermind</h4></a></td>
  42.  
  43. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Hangman</h4></a></td>
  44.  
  45. </table>
  46.  
  47.  
  48. <table border= 1,bordercolor="#FFFFFF", cellspacing="0", cellpadding="0">
  49.  
  50. <tr> <td><script type="text/javascript"> schrijfKlok() </script> </td>
  51.  
  52. <td width=100%, align="center"> <u>Copyright © Lilly L.</u></td> </tr>
  53. </table>
  54.  
  55. </body>
  56. </html>

Groetjes Relinde

11 antwoorden

Gesponsorde links
Offline Martijn - 26/05/2009 19:10 (laatste wijziging 26/05/2009 19:20)
Avatar van Martijn Crew PHP over wat sowieso fouten:
-regel 8 mist een </p> en een </tr>
-de </font> op regel 6 doet niets
- een komma in de <body> tag hoeft niet
- dat geldt ook voor alle <table>
-de border moet ook met "" -> border="1"
- dat geldt ook voor de width en heigth
-regel 29 doet eerst <h4> en daarna <div>, dan moet je eerst je div sluiten, dan pas je <h4>
-regel 28 heeft een <p> die tussen de <table> en <tr> staat, dat kan niet.
-regel 6 doet <div> <p><h1>, die moet je dan sluiten <h1><p><div>
-regel 32 & -> &amp;

een beetje juiste inspringing maakt:

  1. <table width="100%" border ="1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  2. <tr>
  3. <td colspan="2" align= "center">
  4. <div id="top"><p> <h1>Welcome on my site!</h1></p></div>
  5. <div id="topp"><p> I hope you will enjoy the game's!</p></div>
  6. </td>
  7. </tr>
  8.  
  9. <TABLE BORDER="1" ALIGN="left" WIDTH="100%" height="10%" cellspacing="0" cellpadding="3">
  10. <TR>
  11. <TD><a href="How-Mastermind.html"><h4>How I made Mastermind(NL)</h4></a></TD>
  12. <TD><a href="How-Hangman.html"><h4>How I made Hangman(NL)</h4></a></TD>
  13. <TD><a href="proef.html"><h4>The problems that I must deal with Mastermind (NL)</h4></a></TD>
  14. <TD><a href="proef2.html"><h4>The problems that I must deal with Hangman (NL)</h4></a></TD>
  15. <TD><a href="Gegevensinvul.html"><h4>Observation, problem or .... --> Contact me!</h4></a></TD>
  16. </TR>
  17.  
  18. <table width="30%" border ="1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  19. <tr >
  20. <td ><a href="MASTERMIND.HTML"> <h4><div id="home"> Home</div></h4></a></td>
  21. <td rowspan="6">
  22. <div id="GameOver">
  23. <h3>Mastermind the GAME!! </h3>
  24. <h4> &amp; </h4>
  25. <h3> Hangman the GAME</h3>
  26. </div>
  27. </td>
  28. </tr>
  29. <tr><td><a href="proef3.html"><h4>Play Mastermind!!</h4></a></td>
  30. <tr><td><a href="proef4.html"><h4>Play Hangman!!</h4></a></td>
  31. <tr><td><a href="screenshot-game.html"><h4>Screenshot of Mastermind</h4></a></td>
  32. <tr><td><a href="screenshot-game.html"><h4>Screenshot of Hangman</h4></a></td>
  33.  
  34. <table border= "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  35. <tr>
  36. <td><script type="text/javascript"> schrijfKlok() </script> </td>
  37. <td width=100% align="center"> <u>Copyright © Lilly L.</u></td> </tr>
Offline Rlove - 26/05/2009 19:39 (laatste wijziging 26/05/2009 19:46)
Avatar van Rlove Nieuw lid ik heb het nu zo:
  1. <html>
  2.  
  3. <html>
  4. <head>
  5. <title>Welcome on the MASTERMIND-site of Lilly</title>
  6. <link rel="stylesheet" type="text/css" href="opmaak.css">
  7.  
  8. </head>
  9.  
  10. <body bgcolor="#000000" text="#FFFFFF">
  11.  
  12. <table width="100%" border ="1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  13. <tr>
  14.  
  15. <td colspan="2" align= "center"> <div id="top"><p> <h1>Welcome on my site!</h1></p> </div>
  16.  
  17. <div id="topp"><p> I hope you will enjoy the game's!</p></div></td>
  18. </table>
  19.  
  20. <TABLE BORDER="1", ALIGN="left", WIDTH="100%" height= "10%" cellspacing="0" cellpadding="3">
  21. <TR>
  22. <TD><a href="How-Mastermind.html"><h4>How I made Mastermind(NL)</h4></a></TD>
  23. <TD><a href="How-Hangman.html"><h4>How I made Hangman(NL)</h4></a></TD>
  24. <TD><a href="proef.html"><h4>The problems that I must deal with Mastermind (NL)</h4></a></TD>
  25. <TD><a href="proef2.html"><h4>The problems that I must deal with Hangman (NL)</h4></a></TD>
  26. <TD><a href="Gegevensinvul.html"><h4>Observation, problem or .... --> Contact me!</h4></a></TD>
  27. </TR>
  28. </table>
  29.  
  30. <table width="30%" border = "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  31. <p> <tr > <td ><a href="MASTERMIND.HTML">
  32. <div id="home"><h4> Home</h4></div></a></td>
  33.  
  34. <td rowspan="6"><div id="GameOver">
  35.  
  36. <h3>Mastermind the GAME!! </h3>
  37. <h4> & </h4>
  38. <h3> Hangman the GAME</h3> </div>
  39. </td> </tr>
  40.  
  41. <tr> <td><a href="Blood-Magic-wallpapers-679.jpg"><h4>Play Mastermind!!</h4></a></td>
  42.  
  43. <tr> <td><a href="Blood-Magic-wallpapers-679.jpg"><h4>Play Hangman!!</h4></a></td>
  44.  
  45. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Mastermind</h4></a></td>
  46.  
  47. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Hangman</h4></a></td>
  48. </table>
  49.  
  50. <table border= "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  51. <tr> <td><script type="text/javascript"> schrijfKlok() </script> </td>
  52. <td width=100%, align="center"> <u>Copyright © Lilly L.</u></td> </tr>
  53. </table>
  54.  
  55. </body>
  56. </html>


maar nog steeds kan ik de tekst"Mastermind the game & Hangman the game" in de overgebleve ruimte krijgen...

Zo ziet het er ongeveer uit:
-----------------------------------------------------------
.......................Welcome on my site
.......................I hope you will enjoy the game's!
-----------------------------------------------------------
...............|...............|...............|...............|...............|
-----------------------------------------------------------
How I made|Mastermind
------------the GAME!!
How i made|.....&
------------Hangman
Screenshot|the GAME
------------
Screenshot|
-------------------------------------------------------------
...............| Copyright C .....
-------------------------------------------------------------

en ik wil het eigelijk zo er uit laten zien:
-----------------------------------------------------------
Welcome on my site
I hope you will enjoy the game's!
-----------------------------------------------------------
...............|...............|...............|...............|...............|
-----------------------------------------------------------
How I made|
-----------
How i made| De vrije ruimte. (hier wil ik de tekst hebben)
-----------
Screenshot|
-----------
Screenshot|
-------------------------------------------------------------
...............| Copyright C .....
-------------------------------------------------------------

zonder dat het net lijkt alsof hij alleen in het 2de kolom kan..
Offline roberini - 26/05/2009 19:50
Avatar van roberini HTML beginner Maak er even een print screen van en dan uploaden op www.tinypic.com of zo'n soort site en dan de link hier posten.
Offline Rlove - 26/05/2009 20:10
Avatar van Rlove Nieuw lid http://i40.tinypic.com/dc5ue9.jpg
Offline Martijn - 26/05/2009 20:13
Avatar van Martijn Crew PHP ik heb je een lijst fouten gegeven, dan zelf een correcte code, en nogsteeds ga je verder op een foute code?
Offline Rlove - 26/05/2009 20:16 (laatste wijziging 26/05/2009 20:31)
Avatar van Rlove Nieuw lid ik heb alles veranderd wat je in het geel hebt aangegeven.. ? Heb je in het code blok ook nog dingen veranderd? Want daar heb ik niet naar gekeken... En nu net ook nog geprobeerd maar het blijft het zelfde...
Offline roberini - 26/05/2009 21:42 (laatste wijziging 26/05/2009 21:43)
Avatar van roberini HTML beginner
  1. <title>Welcome on the MASTERMIND-site of Lilly</title>
  2. <link rel="stylesheet" type="text/css" href="opmaak.css">
  3.  
  4. </head>
  5.  
  6. <body bgcolor="#000000" text="#FFFFFF">
  7.  
  8. <table width="100%" border ="1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  9. <tr>
  10.  
  11. <td colspan="2" align= "center"> <div id="top"><p> <h1>Welcome on my site!</h1></p> </div>
  12.  
  13. <div id="topp"><p> I hope you will enjoy the game's!</p></div></td></tr>
  14.  
  15. <TABLE BORDER="1" ALIGN="left" WIDTH="100%" height="10%" cellspacing="0" cellpadding="3">
  16. <TR>
  17. <TD><a href="How-Mastermind.html"><h4>How I made Mastermind(NL)</h4></a></TD>
  18. <TD><a href="How-Hangman.html"><h4>How I made Hangman(NL)</h4></a></TD>
  19. <TD><a href="proef.html"><h4>The problems that I must deal with Mastermind (NL)</h4></a></TD>
  20. <TD><a href="proef2.html"><h4>The problems that I must deal with Hangman (NL)</h4></a></TD>
  21. <TD><a href="Gegevensinvul.html"><h4>Observation, problem or .... --> Contact me!</h4></a></TD>
  22. </TR>
  23.  
  24. <table width="30%" border = "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  25. <p> <tr> <td><a href="MASTERMIND.HTML">
  26. <div id="home"><h4> Home</h4></div></a></td>
  27.  
  28. <td rowspan="6"><div id="GameOver">
  29.  
  30. <h3>Mastermind the GAME!! </h3>
  31. <h4> &amp; </h4>
  32. <h3> Hangman the GAME</h3> </div>
  33. </td> </tr>
  34.  
  35. <tr> <td><a href="Blood-Magic-wallpapers-679.jpg"><h4>Play Mastermind!!</h4></a></td></tr>
  36.  
  37. <tr> <td><a href="Blood-Magic-wallpapers-679.jpg"><h4>Play Hangman!!</h4></a></td></tr>
  38.  
  39. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Mastermind</h4></a></td></tr>
  40.  
  41. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Hangman</h4></a></td></tr>
  42.  
  43. <table border= "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  44. <tr> <td><script type="text/javascript"> schrijfKlok() </script> </td>
  45. <td width=100%, align="center"> <u>Copyright © Lilly L.</u></td> </tr>
  46. </table>
  47.  
  48. </body>
  49. </html>


Heb je code hier en daar wat aangepast want het klopte niet helemaal. Wat doet het nu?
Offline Rlove - 26/05/2009 21:56
Avatar van Rlove Nieuw lid http://nl.tinypic.com/r/2rxe683/5 Niet helemaal;)

Maar wel heel erg bedankt dat je me wilt helpen!!!

Grz
Offline roberini - 26/05/2009 22:20
Avatar van roberini HTML beginner
  1. <title>Welcome on the MASTERMIND-site of Lilly</title>
  2. <link rel="stylesheet" type="text/css" href="opmaak.css">
  3.  
  4. </head>
  5.  
  6. <body bgcolor="#000000" text="#FFFFFF">
  7.  
  8. <table width="100%" border ="1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  9. <tr>
  10.  
  11. <td colspan="2" align= "center"> <div id="top"><p> <h1>Welcome on my site!</h1></p> </div>
  12.  
  13. <div id="topp"><p> I hope you will enjoy the game's!</p></div></td></tr>
  14.  
  15. <table border="1" align="left" width="100%" height="10%" cellspacing="0" cellpadding="3">
  16. <tr>
  17. <td><a href="How-Mastermind.html"><h4>How I made Mastermind(NL)</h4></a></td>
  18. <td><a href="How-Hangman.html"><h4>How I made Hangman(NL)</h4></a></td>
  19. <td><a href="proef.html"><h4>The problems that I must deal with Mastermind (NL)</h4></a></td>
  20. <td><a href="proef2.html"><h4>The problems that I must deal with Hangman (NL)</h4></a></td>
  21. <td><a href="Gegevensinvul.html"><h4>Observation, problem or .... --> Contact me!</h4></a></td>
  22. </tr>
  23.  
  24. <table width="30%" border = "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  25. <tr> <td><a href="MASTERMIND.HTML">
  26. <div id="home"><h4> Home</h4></div></a></td>
  27.  
  28. <td rowspan="6" width="100%" align="center"><div id="GameOver">
  29.  
  30. <h3>Mastermind the GAME!! </h3>
  31. <h4> &amp; </h4>
  32. <h3> Hangman the GAME</h3> </div>
  33. </td> </tr>
  34.  
  35. <tr> <td><a href="Blood-Magic-wallpapers-679.jpg"><h4>Play Mastermind!!</h4></a></td></tr>
  36.  
  37. <tr> <td><a href="Blood-Magic-wallpapers-679.jpg"><h4>Play Hangman!!</h4></a></td></tr>
  38.  
  39. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Mastermind</h4></a></td></tr>
  40.  
  41. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Hangman</h4></a></td></tr>
  42.  
  43. <table border= "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  44. <tr> <td><script type="text/javascript"> schrijfKlok() </script> </td>
  45. <td width=100%, align="center"> <u>Copyright © Lilly L.</u></td> </tr>
  46. </table>
  47.  
  48. </body>
  49. </html>


En nu dan?

Als het niet klopt zoek ik het morgen wel voor je uit
Offline Martijn - 26/05/2009 22:30
Avatar van Martijn Crew PHP nee, niet voor dr maken. Niet om gemeen te zijn, maar mensen moeten ervan leren, niet steeds moeten vragen 

Misschien zoek je iets met rowspan?
Offline Rlove - 27/05/2009 07:56 (laatste wijziging 27/05/2009 15:31)
Avatar van Rlove Nieuw lid Ik hoop/denk dat dat het is!!:p

Ik ga het vanmiddag gelijk uitproberen!!!

Heel erg bedankt!
En je hoort het vanmiddag van me!;)

Grz



Heey,

ik heb het net geprobeerd... Maar ik krijg het nog steeds niet. (er is niks veranderd...) Ik heb rowspan en colspan gebruik. (zie hieronder)

  1. <html>
  2.  
  3. <head>
  4. <title>Welcome on the MASTERMIND-site of Lilly</title>
  5. <link rel="stylesheet" type="text/css" href="opmaak.css">
  6.  
  7. </head>
  8.  
  9. <body bgcolor="#000000" text="#FFFFFF">
  10.  
  11. <table width="100%" border ="1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  12. <tr>
  13. <td colspan="2" align= "center"> <div id="top"><p> <h1>Welcome on my site!</h1></p> </div>
  14. <div id="topp"><p> I hope you will enjoy the game's!</p></div></td>
  15. </table>
  16.  
  17. <TABLE BORDER="1", ALIGN="left", WIDTH="100%" height= "10%" cellspacing="0" cellpadding="3">
  18. <TR>
  19. <TD><a href="How-Mastermind.html"><h4>How I made Mastermind(NL)</h4></a></TD>
  20. <TD><a href="How-Hangman.html"><h4>How I made Hangman(NL)</h4></a></TD>
  21. <TD><a href="proef.html"><h4>The problems that I must deal with Mastermind (NL)</h4></a></TD>
  22. <TD><a href="proef2.html"><h4>The problems that I must deal with Hangman (NL)</h4></a></TD>
  23. <TD><a href="Gegevensinvul.html"><h4>Observation, problem or .... --> Contact me!</h4></a></TD>
  24. </TR>
  25. </table>
  26.  
  27. <table width="30%" border = "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  28. <p> <tr > <td ><a href="MASTERMIND.HTML"> <div id="home"><h4> Home</h4></div></a></td>
  29. <td rowspan="5" COLSPAN="4" align="center"><div id="GameOver"> <h3>Mastermind the GAME!! </h3>
  30. <h4> &amp;</h4>
  31. <h3> Hangman the GAME</h3> </div>
  32. </td> </tr>
  33.  
  34. <tr> <td><a href="Blood-Magic-wallpapers-679.jpg"><h4>Play Mastermind!!</h4></a></td>
  35.  
  36. <tr> <td><a href="Blood-Magic-wallpapers-679.jpg"><h4>Play Hangman!!</h4></a></td>
  37.  
  38. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Mastermind</h4></a></td>
  39.  
  40. <tr> <td><a href="screenshot-game.html"><h4>Screenshot of Hangman</h4></a></td>
  41.  
  42. </table>
  43.  
  44. <table border= "1" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
  45. <tr> <td><script type="text/javascript"> schrijfKlok() </script> </td>
  46. <td width="100%" align="center"> <u>Copyright © Lilly L.</u></td> </tr>
  47. </table>
  48.  
  49. </body>
  50. </html>


Ik ben echt ten einde raad... Ben hier nu al iets van 4dagen lang mee bezig om het nou eens goed te krijgen... Maar het lukt steeds niet. 
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.192s