programma

creare un file che permetta di fornire una serie di immagini miniaturizzate e le stesse ingrandite,con descrizione immagine

1-creare serie immagini (gif..jpg..)
2-duplicare la serie di immagini
3-comprimere una serie a dimensioni ridotte( es.foto1..foto2..foto3..foto4...foto5..)
4-comprimere stessa serie a dimensioni da stabilire (es.per WEB)(es.foto1g..foto2g..fot3g..foto4g..foto5g...)
5-scrivere file.txt per descrivere singole immagini (es.foto1.txt ..foto2.txt...)
6-creare pagina (es.miniatura.htm) con tre frame(es.intesta,descrive,mostra) e salvare
7-aprire miniatura.htm con frontapage2003 e inserire in frame intesta le immagini ridotte (inserisci-immagine..)
8-scrivere testo sotto ogni immagine (es.foto1..foto2..)
9-collegare con Inserisci-collegamento ipertestuale ogni immagine e testo indicando anche il frame di destinazione
...es.per immagine foto1......foto1g.gif....(frame > mostra)
..es.per testo foto1..............foto1.txt.....(frame > descrive)

10-salvare...attivare...dovrebbe funzionare...

nota:copiando il contenuto della cartella in altra cartella,è possibile usare lo stesso programma inserendo altre
immagini e descrizioni assegnando i nomi delle precedenti:esempio con due immagini modificate

vedi esempio pratico vedi modificato

codice miniatura.htm

<html>

<head>
<meta http-equiv="Content-Language" content="it">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>miniatura e foto</title>
<!--mstheme--><link rel="stylesheet" href="deep1011.css">
<meta name="Microsoft Theme" content="deepblue 1011">
</head>

<body>

<p align="center"><font color="#FF0000"><b>miniatura e foto</b></font></p>
<p><iframe name="
intesta" src="intesta.htm" width="940" height="194">
Il browser in uso non supporta frame non ancorati oppure è configurato in modo che i frame non ancorati non siano visualizzati.
</iframe></p>
<p><iframe name="
descrive" src="descrive.htm" width="300" height="357">
Il browser in uso non supporta frame non ancorati oppure è configurato in modo che i frame non ancorati non siano visualizzati.
</iframe><iframe name="
mostra" src="foto.htm" width="624" height="358">
Il browser in uso non supporta frame non ancorati oppure è configurato in modo che i frame non ancorati non siano visualizzati.
</iframe></p>

</body>

</html>


codice descrive.htm con applicato tema a frame

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nuova pagina 3</title>
<!--mstheme--><link rel="stylesheet" href="loos1011.css">
<meta name="Microsoft Theme" content="loosegst 1011">
</head>

<body>

</body>

</html>


codice pagina foto.htm e tema per frame mostra

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nuova pagina 4</title>
<!--mstheme--><link rel="stylesheet" href="cypr1011.css">
<meta name="Microsoft Theme" content="cypress 1011">
</head>

<body>

</body>

</html>

 

 

 


codice pagina intesta.htm (link a foto ingrandite e a descrizione foto)

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nuova pagina 2</title>
</head>

<body>

<
p><a target="mostra" href="foto1g.jpg">
<img border="0" src="foto1.jpg" width="160" height="120"></a>
<a target="mostra" href="foto2g.jpg"><img border="0" src="foto2.jpg" width="160" height="120"></a>
<a target="mostra" href="foto3g.jpg"><img border="0" src="foto3.jpg" width="160" height="120"></a>
<a target="mostra" href="foto4g.jpg"><img border="0" src="foto4.jpg" width="160" height="120"></a>
<a target="mostra" href="foto5g.jpg"><img border="0" src="foto5.jpg" width="160" height="120"></a>foto</p>
<p><font color="#FF0000"><b>
<a target="descrive" href="foto1.txt">foto1&nbsp;</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a target="descrive" href="foto2.txt">foto2&nbsp;&nbsp;</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a target="descrive" href="foto3.txt">foto3</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a target="descrive" href="foto4.txt">foto4</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a target="descrive" href="foto5.txt">foto5&nbsp;</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
descrive</b></font></p>

</body>

</html>