-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.65 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Mountains+of+Christmas:wght@400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="../style.css" />
<link rel="shortcut icon" href="../img/joker_12425707.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" />
<script></script>
<title>¡ADIVINA LA CARTA!</title>
</head>
<body>
<div class="modal-background">
<div class="modal">
<div class="modal-header">
<h1 class="modal-title">¡ADIVINA LA CARTA!</h1>
</div>
<div class="modal-body">
<p>
Bienvenido aventurero, el día de hoy voy a retar tu suerte, jugaremos algo divertido, DIME UN NUMERO DEL 2 AL 10 y si es igual al de la
carta, te ganarás un abrazo de Luis! SUERTE!!!!!!
</p>
</div>
<div>
<label for="input-number">NUMERO DEL 2 AL 10</label>
<input type="number" id="input-number" class="input-value" />
</div>
<div class="modal-footer">
<div class="modal-validation"></div>
<button type="button" class="btn" id="submit">VAMOS A JUGAR</button>
</div>
</div>
</div>
<div class="card-father">
<div class="card hidden">
<!-- ESTO SE RELLENA CON JS -->
</div>
<div class="player-card hidden">
<!-- ESTO SE RELLENA CON JS -->
</div>
</div>
<script src="../app.js"></script>
</body>
</html>