Pagina Web
I comandi di base per creare le Pagine Web: Normale, con Tabella e Frame?
Normale ==> <html> …<head>…<title>…<meta name=”owner, author, description, kewords”
content=”…”>...<body>…<bgcolor>..<br>…<left>… <center>...<right>...<a href=…>..<
Tabella ==> I comandi indispensabili “Normale”…<table border=”x” width=”x” height=”x” bgcolor=”x”>…
<tr>…<td width=”x” height=”x” rowspan=”x” align=”left, center, right, top, middle, bottom>
Frame ==> I comandi indispensabili “Normale”…<frameset cols=”x, x”> …<frameset rows=”x, x”>…
<frame name=…>…<scrollino=”x”>…<src=”nomefile”>… <script language=”javascript”>..<!- - //- ->
I comandi di per l’inserimento degli oggetti grafici e suonerie nelle pagine Web?
Inserire oggetti ==> <p align=”left, center, right>… <img src=”..”>…
Inserire suonerie ==>
Netscape: <EMBED SRC="soundname" AUTOSTART=true LOOP=1 width="x" hight="x">
Explorer: <BGSOUND LOOP=1 SRC=" soundname ">
Avvio automatico pagina successiva ==> <meta http-equiv="refresh" content="valori; url=nome">..
I comandi per le formattazioni dei tipi Caratteri, le Dimensioni, Colori e Allineamenti degli
oggetti nelle pagine Web;
<b>..<i>…<u>… <font face=”…” size=”…” color=”…”> <left>… <center>…<right>…
<body bgcolor="#xxxxxx" background="imagename" bgproperties="fixed" text="x" link="#xxxxxx"
alink="#xxxxxx" vlink="#xxxxxx" leftmargin="x" topmargin="x">
Esempio di una pagina con Frame:
Aprire Notepad e digitare:
<html>
<head>
<title>Top</title>
<Body BGColor="#0099FF" text="#FFFF00" LINK="#FFFF00" VLINK="#FFFFFF" ALINK="#FFFFFF">
</head>
<center>
<font size="4" color="#0000FF"><b>Top</b></font>
</center>
</html>
1) Salvare con nome ==> top.htm
2) Sostituire la parola Top con Left e Salvare con nome ==> left.htm
3) Sostituire la parola Left con Center e Salvare con nome ==> center.htm
4) Sostituire la parola Center con Bottom e Salvare con nome ==> bottom.htm
5) Sostituire la parola Bottom con Index e Salvare con nome ==> index.htm
Modificare la pagina index.htm come sotto indicato:
<html>
<head>
<title>Index</title>
<meta name="Owner" content="Tuo Nome">
<meta name="Author" content="Tuo Nome">
<meta name="Description" content="Home Page">
<meta name="Keywords" content="...,...">
</head>
<frameset rows="90,*" border=1 framespacing="1" noresize>
<frame name="top" scrolling="no" target="top" src="top.htm" border=2>
<frameset cols="15%,*" border=2>
<frame name="left" scrolling="no" target="left" src="left.htm" border=2>
<frameset cols="100%,*" border=2>
<frameset rows="*,14%" border=2>
<frame name="center" target="center" src="center.htm" scrolling="yes">
<frame name="bottom" src="bottom.htm" target="bottom" scrolling="no">
</frameset>
</frameset>
</frameset>
<noframes>
<body topmargin="1" leftmargin="1">
</noframes>
</html>
Dopo aver compilato, salvare nuovamente e chiudere NotePad. Cliccare su file index.htm vedrete la pagina creata con frame.
Č consigliabile creare una cartella (Directory) con nome images per inserire le immagini in questa cartella.