(algunos gratuitos)
http://usuariosgaleon.hispavista.com/alta/index.phtml?check=1&usuario=&pago=
http://www.paginawebgratis.es/
Redireccionamiento
Esto sirve cuando un servidor nos da una pagina larga y queremos redirecccionarla a otra
Instrucciones:
copia y pega este código entre <head> y </head>.
<meta http-equiv="refresh" content="3;URL=http://www.lawebera.es">
Codigos HTM
Sirven para agregar elementos especiales a la pagina:Algunos para tu web
Calendario:
dijo:<SCRIPT LANGUAGE="JavaScript">
<!-- Mas scripts en http://www.creatupropiaweb.com -->
<!-- Begin
var now = new Date();
var month_array = new Array("january","february","march","April","May","June","July","August","September","October","November","December";
document.write("<form name=date_list><table bgcolor=silver><tr><td>";
document.write("<select name=month onchange=change_month(this.options.selectedIndex)>";
for(i=0;i<month_array.length;i++)
{
if (now.getMonth() != i)
{document.write ("<option value="+i+">"+month_array);}
else
{document.write ("<option value="+i+" selected>"+month_array[i]);}
}
document.write("</select>";
document.write("</td><td>";
document.write ("<select name=year onchange=change_year(this.options[this.options.selectedIndex])>";
for(i=1950;i<3000;i++)
{
if (now.getYear() != i)
{document.write("<option value="+i+">"+i);}
else
{document.write("<option value="+i+" selected>"+i);}
}
document.write("</select></td></tr><tr><td colspan=2><center>";
document.write("<table bgcolor=white border=0 cellspacing = 0 cellpading = 0 width=100%><tr bgcolor=gray align=center>";
document.write("<td><font color=silver>M</font></td><td><font color=silver>T</td><td><font color=silver>W</td><td><font color=silver>T</td><td><font color=silver>F</td><td ><font color=silver>S</td><td ><font color=silver>S</td>";
document.write("</tr><tr>";
for(j=0;j<6;j++)
{
for(i=0;i<7;i++)
{
document.write("<td align=center id=d"+i+"r"+j+"></td>"![]()
}
document.write("</tr>";
}
document.write("</table>";
document.write("</center></from></td></tr></table>";
var show_date = new Date();
function set_cal(show_date)
{
begin_day = new Date (show_date.getYear(),show_date.getMonth(),1);
begin_day_date = begin_day.getDay();
end_day = new Date (show_date.getYear(),show_date.getMonth()+1,1);
count_day = (end_day - begin_day)/1000/60/60/24;
input_table(begin_day_date,count_day);
}
set_cal(show_date);
function input_table(begin,count)
{
init();
j=0;
if (begin!=0){i=begin-1;}else{i=6}
for (c=1;c<count+1;c++)
{
colum_name = eval("d"+i+"r"+j);
if ((now.getDate() == c)&&(show_date.getMonth() == now.getMonth())&&(show_date.getYear() == now.getYear())) {colum_name.style.backgroundColor = "blue";colum_name.style.color = "white";};
colum_name.innerText = c;
i++;
if (i==7){i=0;j++;}
}
}
function init()
{
for(j=0;j<6;j++)
{
for(i=0;i<7;i++)
{
colum_name = eval("d"+i+"r"+j);
colum_name.innerText = "-";
colum_name.style.backgroundColor ="";
colum_name.style.color ="";
}
}
}
function change_month(sel_month)
{
show_date = new Date(show_date.getYear(),sel_month,1);
set_cal(show_date);
}
function change_year(sel_year)
{
sel_year = sel_year.value;
show_date = new Date(sel_year,show_date.getMonth(),1);
set_cal(show_date);
}
// End -->
</script>
:: Trucos ::
TEXTO FOSFORITO enmarcado en el color que quieras tan facil como colocar una etiqueta style
<span style="background-color:#PON TU COLOR">TU TEXTO </span>
Otra forma simple de enmarcar un texto
<P STYLE="border: ridge #FF0000 2px">texto enmarcado.</P>
texto enmarcado.
Redireccionar la pagina automaticamente
Inserta este otra meta tag entre las de tu pagina
<Meta http-equip="Refresh" content="10;Url=LA DIRECCION DE LA PAGINA A LA QUE IREMOS">
Nota: fijate donde pone 10 quiere decir que en 10 segundos sera enviado al nuevo sitio
Mas codigos en:
http://www.creatupropiaweb.com/codigos/Mas_Codigos.htm
Estos trucos sirven en si para darle un toque elegante a tu web
http://www.creatupropiaweb.com/codigos/Mas_Codigos.htm
Y cosas que yo se.

