-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjuego.html
More file actions
56 lines (53 loc) · 2.03 KB
/
juego.html
File metadata and controls
56 lines (53 loc) · 2.03 KB
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
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/reset.css">
<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=Poppins:wght@100;200;300;400;500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/estilosJuego.css">
<title>Juego</title>
</head>
<body>
<main>
<div id="contenedorJuego">
<div id="juego">
<!-- PINTAR EL PANEL DE JUEGO AUTOMÁTICAMENTE -->
<!-- <div class="containerItem"><div class="item"></div></div> -->
</div>
<div id="juegoAcabado">
<button id="nuevaPartida">OTRA PARTIDA</button>
</div>
<div id="tituloJuego">
<p>MASTERDOTS</p>
</div>
</div>
<div id="contenedorUsuario">
<form id="form_entrada" action="juego.html">
<div class="itemform">
<img src="./img/avatar1.png" width="26" height="26" id="avatarImg">
<input type="text" id="nick" value="nick" readonly>
</div>
<div class="itemform">
<label for="puntuacion">puntuacion</label>
<input type="text" id="puntuacion" value="0" class="inputJuego" readonly>
</div>
<div class="itemform">
<label for="tmpo">tiempo restante</label>
<input type="text" id="tmpo" value="30" class="inputJuego" readonly>
</div>
</form>
</div>
</main>
<footer>
Curso Frontend HTML, CSS y JS
</footer>
<!-- EL CODIGO JS -->
<script src="./js/datosUsuarios.js"></script>
<script src="./js/juego.js"></script>
</body>
</html>