-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (30 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inmersión Dev</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<h1 class="page-title">
Aluraflix
</h1>
<img src="https://user-images.githubusercontent.com/121910576/257301160-11f2dba6-23f2-4a8a-8c14-10ca8825acc8.png" class="page-logo" alt="">
<p class="page-subtitle">
¿Cuál es tú película favorita?
</p>
<div class="form-wrapper">
<input type="text" id="pelicula" name="pelicula" placeholder="Agregue la dirección de la imagen">
<button onClick="agregarPelicula()">Agregar película</button>
</div>
</div>
<div id="listaPeliculas">
</div>
<a href="https://www.aluracursos.com/" target="_blank">
<img src="https://www.aluracursos.com/assets/img/home/alura-logo.1686744883.svg" alt="" class="alura-latam-logo">
</a>
<script src="js/javascript.js"></script>
</body>
</html>