<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ADIVINADOR</title>
</head>
<body>
<h1>ADIVINA EL NÚMERO</h1>
<script>
function mensaje(msg) {
document.write("<big>" + msg + "</big>");
}
function salto() {
var saltoLinea = mensaje("<br><hr><br>");
}
function imprimir(frase) {
mensaje(frase);
salto();
}
var numeroPensado = Math.round(Math.random() * 10);
var numeroParticipante = prompt("Adivine un número entre el 1 hasta el 10");
if (numeroPensado == numeroParticipante) {
imprimir("Felicidades!! Acerto el número");
} else {
imprimir("No acertaste... el número a adivinar va a cambiar. ¡¡Sigue intentando!!");
}
</script>
</body>
</html>