-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="es">
<head>
<!-- META TAGS -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="https://github.com/fedeperin">
<meta name="designer" content="https://github.com/fedeperin">
<meta name="description" content="Tira el dado en 3D que gira aleatoriamente">
<meta name="keywords" content="Dado, 3d, dado en 3d">
<meta name="robots" content="index,follow">
<meta name="googlebot" content="index,follow">
<meta name="revisit-after" content="15days">
<meta name="theme-color" content="#DFDFDF">
<title>Dado</title>
<script src="./app.js" defer></script>
<link rel="stylesheet" href="./estilos.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🎲</text></svg>">
</head>
<body>
<button class="tirar">Tirar</button>
<div class="cubo">
<div class="lado">●</div>
<div class="lado">
<div>●</div>
<div>●</div>
</div>
<div class="lado">●●●</div>
<div class="lado">
<div>●●●</div>
<div>●●●</div>
</div>
<div class="lado">
<div>●</div>
<div>●</div>
<div>●</div>
<div>●</div>
<div>●</div>
</div>
<div class="lado">
<div>●</div>
<div>●</div>
<div>●</div>
<div>●</div>
</div>
</div>
</body>
</html>