Teniendo en cuenta lo aprendido en clase, y las instrucciones dadas por el profesor mi programa quedo asi:
<!DOCTYPE html>
<title>RIFA</title>
<head>
<meta charset="UTF-8">
</head>
<meta charset="UTF-8">
<html>
<h1>¿PUEDES ADIVINAR EL NUMERO?</h1>
<script>
function saltarlinea() {
document.write("<br>");
document.write("<br>");
}
function print(text) {
document.write(text);
saltarlinea();
}
raffle = Math.round(Math.random()*10);
numbertyped = parseInt(prompt("Ingrese un numero de 0 a 10: "))
if (raffle == numbertyped) {
print("Usted adivino")
}
else {
print("Usted no adivino, el numero corecto es: " + raffle)
}
</script>
</html>