mirror of
https://github.com/CristianCruz0309/proyectos-curso-javascript.git
synced 2026-08-15 02:50:10 +00:00
Proyectos (DIA 1 - 13)
Realizados gracias al curso "JAVASCRIPT TOTAL"
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user