• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Habe ein paar fragen zum Code[Bin anfänger]

Status
Für weitere Antworten geschlossen.

Pasha

Neues Mitglied
Hallo,
ich habe ein code im Internet gefunden aber leider kenn ich mich nicht gut genug mit html aus um in zu benutzen.

Code:
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<style type="text/css">
 a:link { text-decoration:none; color:#000000; }
 a:visited { text-decoration:none; color:#000000; }
 a:hover { text-decoration:none; font-style:italic; }
 a:active { text-decoration:none; font-style:italic; }
</style>
<base target="start">
<title>Homepage Titel</title>

</head>
<body SCROLL="auto" background="background.jpg" TOPMARGIN=0 LEFTMARGIN=0

<div id="idname" style="position:absolute; top:0px; left:0px; width:1000px; height:500px;">
<img src="header5.jpg" width="1000" height="388" border=0></div>

<div id="idname" name="start" style="position:absolute; top:200px; left:180px; width:645px; height:1200px;">
<iframe name=start id=start src="home.html" width="645" height="2500" frameborder="0" style="filter:chroma(color=white)"></iframe></div>
<div id="idname" style="position:absolute; top:200px; left:0px; width:150px; height:1200px;">
<iframe src="navi1.html" width="150" frameborder="0" height="2500" style="filter:chroma(color=white)" target="start"></iframe></div>

<div id="idElement2" style="position:absolute; top:200px; left:850px; width:150px; height:1200px;">
<iframe src="navi2.html" width="150" height="2500" frameborder="0" style="filter:chroma(color=white)" target="start"></iframe></div>

</body>
</html>
Könnt ihr mir folgendes erklären?
1.
Was ist mit ID gemeint?
id="idname" 2.
Was bedeutet das?
<iframe name=start...

Das wäre nett wenn ihm mir meine fragen beantorten würdet.^^

Danke im Vorraus!
 
Also so viel ich weiß, brauchst du das gar nicht. ID hat glaub ich nur was mit PHP und so zu tun und kaum was mit HTML. Dein Code sieht dann so aus:
Code:
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<style type="text/css">
 a:link { text-decoration:none; color:#000000; }
 a:visited { text-decoration:none; color:#000000; }
 a:hover { text-decoration:none; font-style:italic; }
 a:active { text-decoration:none; font-style:italic; }
</style>
<base target="start">
<title>Homepage Titel</title>
</head>
<body SCROLL="auto" background="background.jpg" TOPMARGIN=0 LEFTMARGIN=0>
<div style="position:absolute; top:0px; left:0px; width:1000px; height:500px;">
<img src="header5.jpg" width="1000" height="388" border=0></div>
<div style="position:absolute; top:200px; left:180px; width:645px; height:1200px;">
<iframe src="home.html" width="645" height="2500" frameborder="0" style="filter:chroma(color=white)"></iframe></div>
<div style="position:absolute; top:200px; left:0px; width:150px; height:1200px;">
<iframe src="navi1.html" width="150" frameborder="0" height="2500" style="filter:chroma(color=white)" target="start"></iframe></div>
<div style="position:absolute; top:200px; left:850px; width:150px; height:1200px;">
<iframe src="navi2.html" width="150" height="2500" frameborder="0" style="filter:chroma(color=white)" target="start"></iframe></div>
</body>
</html>
Außerdem hab ich im Code einen Fehler entdeckt und entfernt.
Meiner Meinung nach ist der Code jetzt so richtig.

<iframe src="blablalba.html"> ist das Fenster, das auf deiner Seite angezeigt wird. blablabla.html ist in dem Fall dein Pfad, wenn du eine ganz andere Homepage einbinden möchtest, musst du auch http://www.domain.de/pfad/site.htm eingeben.

Viel Spaß, ich hoffe ich hab dir geholfen!
 
1. Was ist mit ID gemeint? id="idname"
Also so viel ich weiß, brauchst du das gar nicht. ID hat glaub ich nur was mit PHP und so zu tun und kaum was mit HTML.
Doch, ID sind Individualformate und werden für CSS benötigt.
Code:
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<title>Meine Seite</title>
<style type="text/css">
[COLOR=Blue]   #format {
     color:#0000FF;
     font-family:Arial; }[/COLOR]
</style>
</head>
<body>
  [COLOR=Blue]<div id="format">[/COLOR]
    <h1>Blaue Überschrift</h1>
    <p>Dieser Text wird blau dargestellt</p>
  </div>
</body>
</html>
Im HEAD-Bereich wird unter <style>...</style> ein Name (hier #format) vergeben, und in einer Klammer werden dann die Formate festgelegt (hier blaue Schrift in Arial). Im BODY -Bereich wird dieses Format nun mit <div id=#format> abgerufen und der folgende Text blau und in Arial angezeigt.

2. Was bedeutet das? <iframe name=start...
Folge Maxi´s Link zu SelfHTML. ;)
 
Status
Für weitere Antworten geschlossen.

Neueste Beiträge

Zurück
Oben