-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (65 loc) · 2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pasatiempos - David Álvarez</title>
<script src="js/info.js"></script>
<style type="text/css">
button {
font-size: 25px;
font-weight: bold;
border: 2px solid gray;
}
</style>
</head>
<body background="img/background.jpg">
<h1 align="center">Pasatiempos - David Álvarez</h1>
<br/><br/><br/>
<form action="grafo">
<div align="center">
<button type="submit">GRAFO</button>
<img src="img/info.png" height="30px" onclick="info_grafo()" style="margin-left: 10px; position: relative; top: 5px;" />
</div>
</form>
<br/><br/><br/><br/>
<form action="sudoku">
<div align="center">
<button type="submit">SUDOKU</button>
<img src="img/info.png" height="30px" onclick="info_sudoku()" style="margin-left: 10px; position: relative; top: 5px;" />
</div>
</form>
<br/><br/><br/><br/>
<form action="deducción">
<div align="center">
<button type="submit">DEDUCCIÓN</button>
<img src="img/info.png" height="30px" onclick="info_deduccion()" style="margin-left: 10px; position: relative; top: 5px;" />
</div>
</form>
<br/><br/><br/><br/>
<form action="ajedrez">
<div align="center">
<button type="submit">AJEDREZ</button>
</div>
</form>
<br/><br/><br/><br/>
<form action="errores">
<div align="center">
<button type="submit">LOS SIETE ERRORES</button>
</div>
</form>
<br/><br/><br/><br/>
<form action="sopa">
<div align="center">
<button type="submit">SOPA DE LETRAS</button>
</div>
</form>
<br/><br/><br/><br/>
<form action="código">
<div align="center">
<button type="submit">DESCARGAR CÓDIGO</button>
<img src="img/info.png"/ height="30px" onclick="info_codigo()" style="margin-left: 10px; position: relative; top: 5px;" />
</div>
</form>
<br/><br/><br/><br/>
</body>
</html>