mirror of
https://github.com/CristianCruz0309/proyectos-curso-javascript.git
synced 2026-08-15 10:58:00 +00:00
19 lines
864 B
HTML
19 lines
864 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>Menú cine</title>
|
|
<link rel="stylesheet" href="misEstilos.css">
|
|
<script src="misScripts.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>¡Bienvenidos al cine!</h1>
|
|
<h3>--- Menú ---</h3>
|
|
<p>Queremos hacer de tu visita, una experiencia más placentera. Para eso, ingresa tu edad y selecciona el género que más te guste, y te recomendamos tu pelicula ideal.</p>
|
|
<p>Edad: <input type="text" id="edad"></p>
|
|
<button onclick="recomendar('drama')">Drama</button>
|
|
<button onclick="recomendar('comedia')">Comedia</button>
|
|
<button onclick="recomendar('musical')">Musical</button>
|
|
<button onclick="recomendar('crimen')">Crimen</button>
|
|
<h3>Nuestra recomendación:</h3>
|
|
<h2 id="recomendacion"></h2>
|
|
</body>
|
|
</html> |