2020. március 3., kedd

Frame minták órára

<HTML>
<FRAMESET ROWS="50%,*">
  <FRAMESET COLS="33%,33%,*">
    <FRAME SRC="pld035.htm">
    <FRAME SRC="pld035.htm">
    <FRAME SRC="pld035.htm">
  </FRAMESET>
  <FRAMESET COLS="50%,*">
    <FRAME SRC="pld035.htm">
    <FRAME SRC="pld035.htm">
  </FRAMESET>
</FRAMESET>
</HTML>

<html>
<head>
<title> Ez az oldal két egyenlõ részre van felosztva függõlegesen</title>
</head>
<frameset rows="50%,50%">
  <frame src="elso.html">
  <frame src="masodik.html">
</frameset>
</html>

<html>
<head>
<title> Ez az három részre van felosztva vízszintesen: 18%, 200px és a megmaradt terület</title>
</head>
<frameset cols="18%,200,*">
  <frame src="elso.html">
  <frame src="masodik.html">
  <frame src="harmadik.html">
</frameset>
</html>


<html>
<head>
<title> Ez egy három részre felosztott oldal más-más görgõ-tulajdonságokkal</title>
</head>
<frameset cols="33%,33%,33%">
  <frame src="elso.html" scrolling="YES">
  <frame src="masodik.html" scrolling="NO">
  <frame src="alma.html" scrolling="AUTO">
</frameset>
</html>

<html>
<head>
<title> Három részes felosztott oldal - az elsõt+másodikat összekötõ keret nem mozgatható, de a második igen</title>
</head>
<frameset cols="33%,33%,33%">
  <frame src="elso.html" scrolling="YES" noresize>
  <frame src="masodik.html" scrolling="NO">
  <frame src="harmadik.html" scrolling="AUTO">
</frameset>
</html>

<html>
<head>
<title> Két rész, nincs szegély </title>
</head>
<frameset cols="20%,80%" frameborder="NO" border="0">
  <frame src="elso.html">
  <frame src="masodik.html">
</frameset>
</html>


<html>
<head>
<title> Két rész, van szegély, méret 8, keretek közti távolság 20 px</title>
</head>
<frameset cols="20%,80%" frameborder="YES" border="8" framespacing="20">
  <frame src="elso.html">
  <frame src="masodik.html">
</frameset>
</html>

<html>
<head>
<title> Két rész, az elsõbõl hivatkozunk a második részbe.</title>
</head>
<frameset cols="30%,70%">
  <frame src="bal.html" scrolling="NO" noresize name="bal">
  <frame src="jobb.html" scrolling="AUTO" name="jobb">
</frameset>
</html>


{bal.html}
<html>
<head>
<title> Bal oldali rész </title>
</head>
<body>
<a href="alma.html" target="jobb"> Az almai fajtai </a>
(ezt a jobb oldali reszbe fogja elohozni)
</body>
</html>

<html>
<head>
<title> Két rész, a jobb oldali rész még kettõre van osztva vízszintesen</title>
</head>
<frameset cols="30%,70%">
  <frame src="elso.html" scrolling="NO" noresize name="bal">
  <frameset rows="35%,65%">
    <frame src="masodik.html" noresize name="felso">
    <frame src="harmadik.html" noresize name="also">
  </frameset>
</frameset>
</html>

<html>
<head>
</head>
<frameset cols="30%,70%">
  <frame src="peldak/elso.html" scrolling="NO" noresize name="bal">
  <frameset rows="35%,65%">
    <frame src="peldak/masodik.html" noresize name="felso">
    <frame src="peldak/harmadik.html" noresize name="also">
  </frameset>
</frameset>
</html>

Nincsenek megjegyzések:

Megjegyzés küldése