Lisa
Irgendwas klappt da nicht
außerdem steht da Pertnerschaft und nicht Partnerschaft ;-)
Lg LisaMausi
Ich muss jetzt auch ins Bett
WuLana
Sorry den den Schreibfehler bessere ich dir aus und was funktioniert nicht zeigt er einen Fehler an wenn ja welchen?
Sorry hab einen Test unabsichtlich an dich geschickt aber jetzt müsst es dann funktionieren ich geb dir gleich den richtigen Code
Lisa
Is das vorne schon der richtige code?
WuLana
Der HTML ist der richtige im PHP war nur ein "," zuviel in line 29 und da hat man schon nen Fehler! bei dem HTML Code musst du noch bei Titel
code: |
1:
2:
3:
|
<title>Pertnerschaft</title>
|
|
in Zeile 5 das e in ein a wechseln aber ich glaub das krigst du hin.
Und hier der korrekte PHP 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:
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Partnerschaft</title>
</head>
<body>
<p>
<?php
$betreff="Partnerschaft"
$hofbesitzer=$_POST['hofbesitzer'];
$e_mail=$_POST['e_mail'];
$hofname=$_POST['hofname'];
$hofadresse=$_POST['hofadresse'];
$banner=$_POST['banner'];
$on_off=$_POST['on_off'];
if ( ($hofbesitzer=="") OR($e_mail=="")OR($hofname=="")OR($hofadresse=="")OR($banner=="")OR($on_off=="") )
{
echo "Du hast nicht alle Felder ausgefüllt! Gehe <a href='javascript:back()'>zurück</a> und korrigiere dies!";
}
else
{
$text="Hofbesitzer:$hofbesitzer
E-Mail:$e_mail
Hofname:$hofname
Hofadresse:$hofadresse
Banner:$banner
Online/Offline:$on_off";
mail("vrh.dreamhorse@web.de",$betreff,$text);
echo "Deine e-Mail wurde erfolgreich abgeschickt.";
}
?>
</body>
</html>
|
|
Lisa
Ja, das bekomm ich hin, werds gleich nachm arzttermin testen ;-)
WuLana
Ok
NEHME AUFTRÄGE AN
Lisa
Geht nich, dann kommt das hier:
Parse error: syntax error, unexpected T_VARIABLE in /usr/export/www/vhosts/funnetwork/hosting/gestuetrabeneck/rabeneck/partner.
php on line 12
WuLana
Ich bin so dämlich imer vergesse ich dieses Zeichen : " ; "
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:
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Partnerschaft</title>
</head>
<body>
<p>
<?php
$betreff="Partnerschaft";
$hofbesitzer=$_POST['hofbesitzer'];
$e_mail=$_POST['e_mail'];
$hofname=$_POST['hofname'];
$hofadresse=$_POST['hofadresse'];
$banner=$_POST['banner'];
$on_off=$_POST['on_off'];
if ( ($hofbesitzer=="") OR($e_mail=="")OR($hofname=="")OR($hofadresse=="")OR($banner=="")OR($on_off=="") )
{
echo "Du hast nicht alle Felder ausgefüllt! Gehe <a href='javascript:back()'>zurück</a> und korrigiere dies!";
}
else
{
$text="Hofbesitzer:$hofbesitzer
E-Mail:$e_mail
Hofname:$hofname
Hofadresse:$hofadresse
Banner:$banner
Online/Offline:$on_off";
mail("vrh.dreamhorse@web.de",$betreff,$text);
echo "Deine e-Mail wurde erfolgreich abgeschickt.";
}
?>
</body>
</html>
|
|
Jetzt müsste es funktionieren sonst ess ich meine Reitstiefel!
Viviana
kommt mein steckbrief noch?
WuLana
@reining: Ist schon lange fertig war nur auf der vorderseite hier nochmal der Code
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:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Unbenanntes Dokument</title>
<style type="text/css">
<!--
.Stil2 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
}
.Stil7 {font-size: 12px}
.Stil8 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 12px;
}
-->
</style></head>
<body>
<table width="500" height="589" border="3" bordercolor="#F3CA8B">
<tr>
<td bordercolor="#EF9B29" bgcolor="#F4E6CA"><table width="521" border="0">
<tr>
<td><table width="510" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center" class="Stil2">>>Allgemeines<<</div></td>
</tr>
</table>
<table width="520" border="0">
<tr>
<td width="250"><table width="260" border="0">
<tr>
<td width="130"><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B"><span class="Stil8">Name</span></td>
</tr>
</table></td>
<td width="120"><span class="Stil7"></span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Rasse</td>
</tr>
</table></td>
<td><span class="Stil7"></span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Geschlecht</td>
</tr>
</table></td>
<td><span class="Stil7"></span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Geburtsjahr</td>
</tr>
</table></td>
<td><span class="Stil7"></span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Schwerpunkt</td>
</tr>
</table></td>
<td><span class="Stil7"></span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Wert</td>
</tr>
</table></td>
<td><span class="Stil7"></span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Besitzer</td>
</tr>
</table></td>
<td><span class="Stil7"></span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Reitbeteiligung</td>
</tr>
</table></td>
<td><span class="Stil7"></span></td>
</tr>
</table></td>
<td width="260"><table width="260" height="263" border="1">
<tr>
<td><img src="http://i37.tinypic.com/bwis6.png" width="320" height="254" /></td>
</tr>
</table></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="520" border="0">
<tr>
<td width="242"><table width="260" height="81" border="1">
<tr>
<td height="23" bgcolor="#F3CA8B" class="Stil8"><div align="center">>>Charackter<<</div></td>
</tr>
<tr>
<td><div class="Stil7" id="Hauptframe2" style="position: absolute; left: 23px; top: 380px; width: 252px; height: 49px; overflow: auto; font-family: Verdana; font-size: 10px; color: black"></div></td>
</tr>
</table></td>
<td width="262"><table width="267" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8"><div align="center">>>Abstammung<<</div></td>
</tr>
</table>
<table width="260" border="0">
<tr>
<td width="114"><table width="130" height="43" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8"> </td>
</tr>
</table></td>
<td width="130"><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8"> </td>
</tr>
<tr>
<td bgcolor="#F3CA8B" class="Stil8"> </td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="130" height="40" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8"> </td>
</tr>
</table></td>
<td><table width="130" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8"> </td>
</tr>
<tr>
<td bgcolor="#F3CA8B" class="Stil8"> </td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<table width="540" border="0">
<tr>
<td width="263"><table width="260" border="0">
<tr>
<td width="250"><table width="250" border="0">
<tr>
<td><table width="250" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center" class="Stil8">>>Sonstiges<<</div></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="240" border="0">
<tr>
<td width="120"><table width="120" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Stall</td>
</tr>
</table></td>
<td width="110" class="Stil7"> </td>
</tr>
<tr>
<td><table width="120" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Einstreu</td>
</tr>
</table></td>
<td class="Stil7"> </td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="260" border="0">
<tr>
<td><table width="250" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center" class="Stil8">>>Futterplan<<</div></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="240" border="0">
<tr>
<td width="120"><table width="120" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Morgen</td>
</tr>
</table></td>
<td width="110" class="Stil7"> </td>
</tr>
<tr>
<td><table width="120" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Mittag</td>
</tr>
</table></td>
<td class="Stil7"> </td>
</tr>
<tr>
<td><table width="120" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Abend</td>
</tr>
</table></td>
<td class="Stil7"> </td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
<td width="267"><table width="270" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8"><div align="center">>>Ausbildung<<</div></td>
</tr>
</table>
<table width="271" border="0">
<tr>
<td width="85"><div align="center"></div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center">E</div></td>
</tr>
</table>
</div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center">A</div></td>
</tr>
</table>
</div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center">L</div></td>
</tr>
</table>
</div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center">M</div></td>
</tr>
</table>
</div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center">S</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td class="Stil8"><table width="87" border="1">
<tr>
<td width="77" bgcolor="#F3CA8B">Dressur</td>
</tr>
</table></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
</tr>
<tr>
<td class="Stil8"><table width="85" border="1">
<tr>
<td bgcolor="#F3CA8B">Springen</td>
</tr>
</table></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
</tr>
<tr>
<td class="Stil8"><table width="85" border="1">
<tr>
<td bgcolor="#F3CA8B">Vielseitigkeit</td>
</tr>
</table></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
<td class="Stil7"><div align="center"></div></td>
</tr>
</table>
<table width="271" border="0">
<tr>
<td width="96"><table width="77" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Western</td>
</tr>
</table></td>
<td width="165" class="Stil8"> </td>
</tr>
<tr>
<td><table width="77" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8">Sonstiges</td>
</tr>
</table></td>
<td class="Stil8"> </td>
</tr>
</table>
<p> </p></td>
</tr>
</table>
<table width="520" border="0">
<tr>
<td><table width="510" border="1">
<tr>
<td bgcolor="#F3CA8B"><div align="center" class="Stil8">>>Erfolge<<</div></td>
</tr>
</table></td>
</tr>
<tr>
<td class="Stil7"> </td>
</tr>
</table>
<table width="520" border="0">
<tr>
<td><table width="510" border="1">
<tr>
<td bgcolor="#F3CA8B" class="Stil8"><div align="center">>>Fotoalbum<<</div></td>
</tr>
</table></td>
</tr>
<tr>
<td><div align="center"><img src="http://i36.tinypic.com/2ibnfh0.png" width="400" height="300" /></div></td>
</tr>
</table> <p> </p>
</td>
</tr>
</table>
</body>
</html>
|
|
Viviana
oh, muss ich übersehn haben, danke :d
EDIT: Könntest du schon die richtige schriftart, große und so einstellen und eventuell die balken alle gleichlang machen (bei der ausbildung) un vllt auch die farben und rahmen wie auf der grafik machen?
WuLana
Bitte gerne!
Falls du noch was brauchst melde dich einfach!
Viviana
hab oben reinediert, ich geb dir mal die codes von den farben, ok? solle mit dem design übereinstimmen...
da:

WuLana
Klar kann ich machen ist das in Ordnung das ich sie dir dan morgen gebe bin grad nicht in der Stimmung was zu machen.
Viviana
ok, es sollte wenns geht so ausseghen wie auf der grafik. wäre toll, wenn du als platzhalter immer da, wo ich was eintragen muss mit der schrift, die ich später brauch, text reinschreiben kannst? und vllt bei character sovie, der scrollbalken da ist, den ic später brauch? wäre toll....
WuLana
Ist er eh nur da darfst du nicht i die Tabelle schreiben sondern in den Rahmen den ich dir da hin gegeben hab. Nicht wundern wenn er länger wird, der wird dann zu nem Scrollbalken wenn der aus der göße geht in der er war.
Viviana
kein ptoblem
WuLana
Aber wegen dar Schriftgröße das würde nichts bringen. Da die Bilder es sowieso vergrößern würden und dann so viel Platz ist ich habs bewusst so groß gemacht.
EDIT: so vielleicht
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:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Unbenanntes Dokument</title>
<style type="text/css">
<!--
.Stil7 {font-size: 12px}
.Stil8 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 12px;
}
.Stil10 {font-family: Tahoma; font-weight: bold; font-size: 12px; }
.Stil11 {
font-family: Tahoma;
font-size: 12px;
}
.Stil12 {font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif;}
-->
</style></head>
<body>
<table width="500" height="589" border="3" bordercolor="#F3CA8B" bgcolor="#F4E5D0">
<tr>
<td bordercolor="#EF9B29" bgcolor="#F4E6CA"><table width="521" border="0" align="center">
<tr>
<td><table width="601" border="1" align="center">
<tr>
<td bgcolor="#D6C3A2"><div align="center" class="Stil10">>>Allgemeines<<</div></td>
</tr>
</table>
<table width="520" border="0">
<tr>
<td width="250"><table width="260" border="0">
<tr>
<td width="130"><table width="130" border="1">
<tr>
<td bgcolor="#D6C3A2"><span class="Stil10">Name</span></td>
</tr>
</table></td>
<td width="120" class="Stil11"><span class="Stil7">Text</span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil10">Rasse</td>
</tr>
</table></td>
<td class="Stil11"><span class="Stil7">text</span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil10">Geschlecht</td>
</tr>
</table></td>
<td class="Stil11"><span class="Stil7">test</span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil10">Geburtsjahr</td>
</tr>
</table></td>
<td class="Stil11"><span class="Stil7">text</span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil10">Schwerpunkt</td>
</tr>
</table></td>
<td class="Stil11"><span class="Stil7">text</span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil10">Wert</td>
</tr>
</table></td>
<td class="Stil11"><span class="Stil7">text</span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil10">Besitzer</td>
</tr>
</table></td>
<td class="Stil11"><span class="Stil7">text</span></td>
</tr>
<tr>
<td><table width="130" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil10">Reitbeteiligung</td>
</tr>
</table></td>
<td class="Stil11"><span class="Stil7">text</span></td>
</tr>
</table>
</td>
<td width="260"><table width="260" height="263" border="1">
<tr>
<td bgcolor="#F0DBBF"><img src="http://i37.tinypic.com/bwis6.png" width="320" height="254" /></td>
</tr>
</table></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="520" border="0" align="center">
<tr>
<td width="242"><table width="260" height="81" border="1">
<tr>
<td height="23" bgcolor="#D6C3A2" class="Stil8"><div align="center" class="Stil10">>>Charackter<<</div></td>
</tr>
<tr>
<td><div class="Stil11" id="Hauptframe2" style="position: absolute; left: 63px; top: 378px; width: 252px; height: 49px; overflow: auto; font-family: Verdana; font-size: 10px; color: black">text</div></td>
</tr>
</table></td>
<td width="262"><table width="267" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil8"><div align="center" class="Stil10">>>Abstammung<<</div></td>
</tr>
</table>
<table width="270" border="0">
<tr>
<td width="130" class="Stil11"><table width="130" height="29" border="1">
<tr>
<td bgcolor="#F0DBBF" class="Stil12">text</td>
</tr>
</table>
</td>
<td width="130" class="Stil11"><table width="130" border="1">
<tr>
<td bgcolor="#F0DBBF" class="Stil11">text</td>
</tr>
<tr>
<td bgcolor="#D6C3A2" class="Stil11">text</td>
</tr>
</table></td>
</tr>
<tr>
<td class="Stil11"><table width="130" height="30" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil11">text</td>
</tr>
</table></td>
<td class="Stil11"><table width="130" border="1">
<tr>
<td bgcolor="#F0DBBF" class="Stil11">text</td>
</tr>
<tr>
<td bgcolor="#D6C3A2" class="Stil11">text</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<table width="540" border="0" align="center">
<tr>
<td width="263"><table width="260" border="0">
<tr>
<td width="250"><table width="250" border="0">
<tr>
<td><table width="250" border="1">
<tr>
<td bgcolor="#D6C3A2"><div align="center" class="Stil8">>>Sonstiges<<</div></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="240" border="0">
<tr>
<td width="120"><table width="120" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil8">Stall</td>
</tr>
</table></td>
<td width="110" class="Stil11">text</td>
</tr>
<tr>
<td><table width="120" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil8">Einstreu</td>
</tr>
</table></td>
<td class="Stil11">text</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="260" border="0">
<tr>
<td><table width="250" border="1">
<tr>
<td bgcolor="#D6C3A2"><div align="center" class="Stil8">>>Futterplan<<</div></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="240" border="0">
<tr>
<td width="120"><table width="120" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil8">Morgen</td>
</tr>
</table></td>
<td width="110" class="Stil11">text</td>
</tr>
<tr>
<td><table width="120" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil8">Mittag</td>
</tr>
</table></td>
<td class="Stil11">text</td>
</tr>
<tr>
<td><table width="120" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil8">Abend</td>
</tr>
</table></td>
<td class="Stil11">text</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
<td width="267"><table width="270" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil8"><div align="center">>>Ausbildung<<</div></td>
</tr>
</table>
<table width="271" border="0">
<tr>
<td width="85"><div align="center"></div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#D6C3A2"><div align="center">E</div></td>
</tr>
</table>
</div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#D6C3A2"><div align="center">A</div></td>
</tr>
</table>
</div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#D6C3A2"><div align="center">L</div></td>
</tr>
</table>
</div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#D6C3A2"><div align="center">M</div></td>
</tr>
</table>
</div></td>
<td width="32" class="Stil8"><div align="center">
<table width="30" border="1">
<tr>
<td bgcolor="#D6C3A2"><div align="center">S</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td class="Stil8"><table width="98" border="1">
<tr>
<td width="88" bgcolor="#D6C3A2">Dressur</td>
</tr>
</table></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
</tr>
<tr>
<td class="Stil8"><table width="96" border="1">
<tr>
<td width="86" bgcolor="#D6C3A2">Springen</td>
</tr>
</table></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
</tr>
<tr>
<td class="Stil8"><table width="85" border="1">
<tr>
<td bgcolor="#D6C3A2">Vielseitigkeit</td>
</tr>
</table></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
<td class="Stil11"><div align="center"></div></td>
</tr>
</table>
<table width="271" border="0">
<tr>
<td width="96"><table width="95" border="1">
<tr>
<td width="85" bgcolor="#D6C3A2" class="Stil8">Western</td>
</tr>
</table></td>
<td width="165" class="Stil11">text</td>
</tr>
<tr>
<td><table width="95" border="1">
<tr>
<td width="85" bgcolor="#D6C3A2" class="Stil8">Sonstiges</td>
</tr>
</table></td>
<td class="Stil11">text</td>
</tr>
</table>
<p> </p></td>
</tr>
</table>
<table width="520" border="0" align="center">
<tr>
<td><table width="510" border="1">
<tr>
<td bgcolor="#D6C3A2"><div align="center" class="Stil8">>>Erfolge<<</div></td>
</tr>
</table></td>
</tr>
<tr>
<td class="Stil11">text</td>
</tr>
</table>
<table width="520" border="0" align="center">
<tr>
<td><table width="510" border="1">
<tr>
<td bgcolor="#D6C3A2" class="Stil8"><div align="center">>>Fotoalbum<<</div></td>
</tr>
</table></td>
</tr>
<tr>
<td><div align="center"><img src="http://i36.tinypic.com/2ibnfh0.png" width="400" height="300" /></div></td>
</tr>
</table> <p> </p>
</td>
</tr>
</table>
</body>
</html> |
|
Viviana
hmm, schrift und schriftfarbe stimmt noch net, und es sollte alles in der mitte der kästchen stehen. wäre auch toll, wen dass den rand noch auf ein pixel in der einen farbe ändern könntest...
WuLana
Klar mach ich
Sorry die Schriftfarbe hatte ich vergessen.