![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
04/03/2004, 08:07
|
![Avatar de kemie](http://static.forosdelweb.com/customavatars/avatar35713_0.gif) | | | Fecha de Ingreso: junio-2003 Ubicación: estocolmo<-->mexico
Mensajes: 1.627
Antigüedad: 21 años, 7 meses Puntos: 1 | |
necesitas usar algo de programacion. intenta esto:
<html>
<head>
<title id="title">Titulo de mi pagina</title>
</head>
<body>
Estas en la pagina <span id="replace">
titulo
</span>
<script>
<!--
document.getElementById('replace').innerHTML = document.getElementById('title').innerHTML;
-->
</script>
</body>
</html> |