tengo un script para que el usuario ponga su nombre y cuando da en enviar le abre una bienvenida, mi problema es que la pagina donde abre la bienvenida no le puedo dar formato, es decir, tamaño de fuente, ponerle un fondo y que tal vez me abra en algun marco, pero no consigo hacerlo....................que le puedo mover??? solo le he podido dar formato a la entrada dode esta la caja de texto de inicio.
por fa............ayuda!!!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
<!--
a:link {
color: #666666;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #0099CC;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}
.Estilo14 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
}
body {
background-image: url(img/lineas.jpg);
}
-->
</style>
<html>
<head>
<title>Bienvenido a mi página</title>
<script type="text/javascript">
function rewritePage(form) {
var newPage = "<html><head><title> bienvenida";
newPage += form.entry.value;
newPage += "</title></head><body>";
newPage += "<h1>Hola, " + form.entry.value + "!</h1>";
newPage += "</body></html>";
document.write(newPage);
document.close();
}
</script>
<body>
<h1>Hola</h1>
<hr>
<form onsubmit="return false;">
<p>Escribe tu Nombre: <input type="text" name="entry" id="entry">
<input type="button" value="Entrar" onclick="rewritePage(this.form);">
</p>
</form>
</body>
</html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
</body>
</html>