-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
37 lines (35 loc) · 1.42 KB
/
index3.html
File metadata and controls
37 lines (35 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Ventanas juego</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.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=Tiny5&display=swap" rel="stylesheet">
</head>
<body id="body">
<header>
<nav class="nav">
<h1 class="nav-h1">Juego de Ventanas</h1>
</nav>
</header>
<section class="section-points">
<div class="section-points__div">
<h2 class="contador">Segundos:</h2>
<h3 class="div-points" id="puntos">Puntos:</h3>
</div>
</section>
<section class="section">
<div class="section__div">
<button class="section__divpuntos-but dis" id="btn-puntos"></button>
<button class="section__divpuntos-but dis lose" id="btn-lose"></button>
</div>
</section>
<script src="code/code.js" async defer></script>
<script src="code/juego.js" async defer></script>
</body>
</html>