BITTE HELFEN!


Recommended Posts

ASB-Halbgott

i hab jetzt dann klausur und kenn mi bei so manchen dingen net aus :)

wer sich mit pagemaker, html, spss oderphotoshop auskennt bitte ab 3 bereit sein :) werd bestimmt n paar fragen haben ;)

muh

die edith hat gmeint wir dürfen laut professoren auch das internet und skripten usw benutzen wenn wir genug zeit dazu haben :) also is des eh nur legitim :finger:

bearbeitet von Murauer_Bier

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

ASB-Halbgott

hier sind 2 oder 4 fehler...welche?

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE html PUBLIC "-//W3C//DtD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>Klausur Gruppe A</title>

</head>

<body>

<frameset cols="300,*" frameborder="0" border="0" framespacing="0">

<frame name="links" href="links.html">

<frame name="rechts" src="rechts1.html">

</frameset>

</body>

</html>

hier 3:

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE html PUBLIC "-//W3C//DtD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>Navigation - Gruppe A</title>

<link rel="stylesheet" type="text/css" href="links.css" />

</head>

<body>

<center>

<h2>Navigation im Übungssystem</h3>

<br />

<ol>

<li>Zur Datei <a href="rechts1.html" target="_self">"rechts1.html"</a></li>

<li>Zur Datei <a href="rechts2.html" target="rechts">"rechts2.html"</a></li>

</ol>

<br />

<hr />

<br />

<p>Dies ist nur ein Übungssystem... <br />

Ich wünsche viel Erfolg! <br /><br />

<img src="hfi.jpg" alt="Historische Fachinformation" /><br />

</p>

</center>

</html>

bearbeitet von Murauer_Bier

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

* 1911 - 2021 * die Austria ist tot - lang lebe die Austria *
<frame name="links" href="links.html">

<frame name="rechts" src="rechts1.html">

eintweder ist das "href" falsch, oder das "src"...welche Zeile falsch ist weiß ich nicht, vielleicht sogar beide...

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

Aus Beispiel 1:

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE html PUBLIC "-//W3C//DtD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">

Das "t" sollte ein "T" sein, weiß leider nicht ob es einen Unterschied macht, wird aber normal so angegeben.

bearbeitet von Sturmforever

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

Knows how to post...

einen schönen gruss an deinen professor. hier sind mehr als 3-4 fehler drinnen:

erster teil:

1.

Line 11, column 15: there is no attribute "cols"

<frameset cols="300,*" frameborder="0" border="0" framespacing="0">

You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute.

2.

Line 11, column 35: there is no attribute "frameborder"

<frameset cols="300,*" frameborder="0" border="0" framespacing="0">

3.

Line 11, column 46: there is no attribute "border"

<frameset cols="300,*" frameborder="0" border="0" framespacing="0">

4.

Line 11, column 63: there is no attribute "framespacing"

... cols="300,*" frameborder="0" border="0" framespacing="0">

5.

Line 11, column 66: element "frameset" undefined

..."300,*" frameborder="0" border="0" framespacing="0">

You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element), or by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).

6.

Line 12, column 12: there is no attribute "name"

<frame name="links" href="links.html">

7.

Line 12, column 25: there is no attribute "href"

<frame name="links" href="links.html">

8.

Line 12, column 37: element "frame" undefined

<frame name="links" href="links.html">

9.

Line 13, column 25: there is no attribute "src"

<frame name="rechts" src="rechts1.html">

10.

Line 13, column 39: element "frame" undefined

<frame name="rechts" src="rechts1.html">

11.

Line 14, column 10: end tag for "frame" omitted, but OMITTAG NO was specified

</frameset>

You may have neglected to close a tag, or perhaps you meant to "self-close" a tag; that is, ending it with "/>" instead of ">".

12.

Line 13, column 0: start tag was here

<frame name="rechts" src="rechts1.html">

13.

Line 14, column 10: end tag for "frame" omitted, but OMITTAG NO was specified

</frameset>

14.

Line 12, column 0: start tag was here

<frame name="links" href="links.html">

zweiter teil:

1.

Line 14, column 34: end tag for element "h3" which is not open

<h2>Navigation im Übungssystem</h3>

The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

If this error occured in a script section of your document, you should probably read this FAQ entry.

2.

Line 17, column 3: document type does not allow element "ol" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag

<ol>

The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.

One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

3.

Line 23, column 5: document type does not allow element "hr" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag

<hr />

4.

Line 25, column 2: document type does not allow element "p" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag

<p>Dies ist nur ein Übungssystem... <br />

5.

Line 30, column 8: end tag for "h2" omitted, but OMITTAG NO was specified

</center>

You may have neglected to close a tag, or perhaps you meant to "self-close" a tag; that is, ending it with "/>" instead of ">".

6.

Line 14, column 0: start tag was here

<h2>Navigation im Übungssystem</h3>

7.

Line 32, column 6: end tag for "body" omitted, but OMITTAG NO was specified

</html>

8.

Line 11, column 0: start tag was here

<body>

schönen gruss vom W3C an deinen Professor ;)

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

Weiterer Fehler in Beispiel 1:

Laut Header- Informationen soll das eine XHTML Strict 1.0 Seite sein, Framesets sind allerdings wie es scheint keine Bestandteile dieser Norm, es gibt eine eigene Deklaration für Frameset- Seiten:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"

"http://www.w3.org/TR/html4/frameset.dtd">

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

Knows how to post...
<br />

<hr />

<br />

<p>Dies ist nur ein Übungssystem... <br />

Nun wozu dient der Schrägstrich bei <br />??? sowie bei den anderen? Gehört der nicht weg?!

der / ist schon richtig. da ALLE html tags einen anfang- und endtag haben sollten (lt. standard, wird aber nicht praktiziert -> deswegen die probleme mit versch. browsern) sollte der / angegeben werden. es deutet nur darauf hin dass der tag gleich geschlossen wird.

wenn du zb. keinen titel hast musst du nicht

<title></title>

schreiben sondern

<title/>

das deutet auf einen leeren tag hin.

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

Bitte gehen Sie weiter, es gibt hier nichts zu sehen.

kleiner Tip am Rande: Es würde es potentiellen Helfern leichter machen, wenn Du schon im Titel schreibst, worum es geht.

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

  • 2 weeks later...
La Vida Loca

der / ist schon richtig. da ALLE html tags einen anfang- und endtag haben sollten (lt. standard, wird aber nicht praktiziert -> deswegen die probleme mit versch. browsern) sollte der / angegeben werden. es deutet nur darauf hin dass der tag gleich geschlossen wird.

und das ganze nennt sich XHTML und ist sehr empfehlenswert. xhtml und css sind die werkzeuge fürs web vorwärts- und meist auch rückwärtskompatibel!

Diesen Beitrag teilen


Link zum Beitrag
Auf anderen Seiten teilen

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Gast
Auf dieses Thema antworten...

×   Du hast formatierten Text eingefügt.   Formatierung jetzt entfernen

  Only 75 emoji are allowed.

×   Dein Link wurde automatisch eingebettet.   Einbetten rückgängig machen und als Link darstellen

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Lädt...


  • Folge uns auf Facebook

  • Partnerlinks

  • Unsere Sponsoren und Partnerseiten

  • Wer ist Online

    • Keine registrierten Benutzer online.