-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>"Las Palabras Saltarinas</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="javascript" type="text/javascript" href="./js/cerrar_ventana.js">
<link rel="stylesheet" type="text/css" href="./css/wtf.css">
</head>
<body>
<h1>"Las Palabras Saltarinas"</h1>
<div class="box">
<ul class="minbox">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<ol class="maxbox">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
</div>
<div class="div-btn">
<a href="index.php?c=nivel1&action=mostrar"><button type="button">Comenzar</button><br><br><br></a>
<a href="index.php?c=nivel2&action=mostrar/"><button type="button" >Avanzado</button><br><br><br></a>
<input type="button" name="salir" onclick="closeCurrentWindow();" value="Salir" class="btn-salir">
</div>
<br><br><br>
<script type="text/javascript">
function closeCurrentWindow() {
window.close();
}
</script>
</body>
</html>