Forum de discussion
Forum « Programmation HTML » (archives)
lien entre cadre
Envoyé: 18 juillet 2004, 11h33 par 4114
-------------------------
menu.html
<html>
<head>
<title>Liste</title>
<STYLE type="Text/css">
A:link {text-decoration:none}
A:visited {text-decoration:none}
a:active {
color:yellow;
font-size:12pt;
font-family:Arial;
font-weight:bold;
}
</STYLE>
</head>
<body bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" alink="#FFFFFF" vlink="#FFFFFF">
<div align="center">
<FONT FACE="Arial"size=3>
<br>
<A HREF="Abricotier1.html" TARGET="picture">Abricotier1</A>
<br>
<A HREF="Abricotier2.html" TARGET="picture">Abricotier2</A>
<br>
<A HREF="Abricotier3.html" TARGET="picture">Abricotier3</A>
<br>
<A HREF="Cerisier1.html" TARGET="picture">Cerisier1</A>
<br>
<A HREF="Cerisier2.html" TARGET="picture">Cerisier2</A>
<br>
<A HREF="Cerisier3.html" TARGET="picture">Cerisier3</A>
<br>
<A HREF="Cerisier4.html" TARGET="picture">Cerisier4</A>
<br>
<A HREF="Hibiscus.html" TARGET="picture">Hibiscus</A>
<br>
<A HREF="Hortensia.html" TARGET="picture">Hortensia</A>
<br>
<A HREF="Iris1.html" TARGET="picture">Iris1</A>
<br>
<A HREF="Iris2.html" TARGET="picture">Iris2</A>
<br>
<A HREF="Laurier1.html" TARGET="picture">Laurier1</A>
<br>
<A HREF="Laurier2.html" TARGET="picture">Laurier2</A>
<br>
<A HREF="Laurier3.html" TARGET="picture">Laurier3</A>
<br>
<A HREF="Marronnier1.html" TARGET="picture">Marronnier1</A>
<br>
<A HREF="Marronnier2.html" TARGET="picture">Marronnier2</A>
<br>
<A HREF="Marronnier3.html" TARGET="picture">Marronnier3</A>
<br>
<A HREF="Marronnier4.html" TARGET="picture">Marronnier4</A>
<br>
<A HREF="Millepertuis1.html" TARGET="picture">Millepertuis1</A>
<br>
<A HREF="Millepertuis2.html" TARGET="picture">Millepertuis2</A>
<br>
<A HREF="Narcisse.html" TARGET="picture">Narcisse</A>
<br>
<A HREF="Pavot.html" TARGET="picture">Pavot</A>
<br>
<A HREF="Prunier1.html" TARGET="picture">Prunier1</A>
<br>
<A HREF="Prunier2.html" TARGET="picture">Prunier2</A>
<br>
<A HREF="Prunier3.html" TARGET="picture">Prunier3</A>
<br>
<A HREF="Rose1.html" TARGET="picture">Rose1</A>
<br>
<A HREF="Rose2.html" TARGET="picture">Rose2</A>
<br>
<A HREF="Rose3.html" TARGET="picture">Rose3</A>
<br>
<A HREF="Rose4.html" TARGET="picture">Rose4</A>
<br>
<A HREF="Rose5.html" TARGET="picture">Rose5</A>
<br>
</FONT>
</div>
</body>
</html>
-----------------------------------
index.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>VISUALISEUR</title>
<frameset cols="185,*" border=0>
<frame marginwidth=0 marginheight=0 frameborder="no" scrolling=auto name="menu" src="menu.html" noresize>
<frame marginwidth=0 marginheight=0 frameborder="yes" scrolling=auto name="picture" src="blank.html" noresize>
</frameset>
</head>
<body bgcolor="black" alink="black"></body>
</html>
-----------------------------
blank.html
<html>
<head>
</head>
<body bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" alink="#FFFFFF" vlink="#FFFFFF">
</body>
</html>
--------------------------------
abricotier1.html
<html>
<head>
<title>Images JPEG</title>
<STYLE type="Text/css">
A:link {text-decoration:none}
A:visited {text-decoration:none}
A:active{color:yellow;}
A:hover {color: yellow;}
</STYLE>
</head>
<body bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" alink="#FFFFFF" vlink="#FFFFFF">
<center>
<table border=0 cellspacing=5 cellpadding=6 height="100%">
<tr>
<body bgcolor="#003333" align=center>
<td align=center>
<font face="Arial"size=3 color="#FFFFFF">
<b>
FLEURS D'ABRICOTIER
</b>
</font>
</td>
</tr>
<tr>
<td align=center>
<font face="Arial" size=2>
<a href="Abricotier2.html">Suivant</a>
</font>
</td>
</tr>
<tr>
<td align=center valign=center bgcolor="#000000">
<img src="Abricotier1.jpg" border=0 Width=800 alt=" Abricotier1.jpg ">
</td>
</tr>
</table>
</center>
</body>
</html>
-------------------------------------
abricotier2.html
<html>
<head>
<title>Images JPEG</title>
<STYLE type="Text/css">
A:link {text-decoration:none}
A:visited {text-decoration:none}
A:active{color:yellow;}
A:hover {color: yellow;}
</STYLE>
</head>
<body bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" alink="#FFFFFF" vlink="#FFFFFF">
<center>
<table border=0 cellspacing=5 cellpadding=6 height="100%">
<tr>
<body bgcolor="#003333" align=center>
<td align=center>
<font face="Arial"size=3 color="#FFFFFF">
<b>
FLEURS D'ABRICOTIER
</b>
</font>
</td>
</tr>
<tr>
<td align=center>
<font face="Arial" size=2>
<a href="Abricotier1.html">Précédent</a>
|
<a href="Abricotier3.html">Suivant</a>
</font>
</td>
</tr>
<tr>
<td align=center valign=center bgcolor="#000000">
<img src="Abricotier2.jpg" border=0 Width=800 alt=" Abricotier2.jpg ">
</td>
</tr>
</table>
</center>
</body>
</html>
Réponses
|