-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestructura.html
executable file
·99 lines (86 loc) · 2.73 KB
/
estructura.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<head>
<title>Bienvenido a ¿En qué lo gasté?, gestión personal de dinero.</title>
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<link rel="stylesheet" href="css/default.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/nivo-slider.css" type="text/css" media="screen" />
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/jquery.nivo.slider.js"></script>
<link type="text/css" href="css/custom-theme/jquery-ui-1.8.21.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-ui-1.8.21.custom.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#slider').nivoSlider();
});
function sobreDialogo(){
$('#capaOscura').css('display','block');
//$('html').css('overflow','hidden');
$('#dialogoSobre').dialog(
{
open:true,
width:700,
resizable:false,
position:'top',
close: function(ev, ui) { $('#capaOscura').css('display','none'); $('html').css('overflow','visible')
}
}
);
}
function RegistroDialogo(){
$('#capaOscura').css('display','block');
//$('html').css('overflow','hidden');
$('#dialogoRegistro').dialog(
{
open:true,
width:600,
resizable:false,
position:'center',
close: function(ev, ui) { $('#capaOscura').css('display','none'); $('html').css('overflow','visible')
}
}
);
}
</script>
</head>
<body>
<br>
<div id="capaOscura"></div>
<div id="fondo1"> </div>
<header>
<div id="cont_head">
<div id="logo">
<img src="images/logo.png" width=120>
</div>
<div id="slogan">
<h1>
No te olvidas más!
</h1>
</div>
<nav id="panel">
<a href="#" onclick="LoginDialogo();">Login</a> | <a href="#" onclick="sobreDialogo();">Sobre</a> | <a href="#" onclick="RegistroDialogo();">Registro</a>
</nav>
</div> <!-- fin cont_head -->
</header>
<div id="content">
<section id="slid_pe">
</section>
<section id="info_general">
<br><br>
</section>
</div> <!-- fin content -->
<br><br><br><br>
<footer>
<section id="infoFoot">
<nav id="sociales">
<img id="PriIm" src="http://www.esngranada.org/agm/imagebrowser/view/image/655/_original">
<img src="http://technotip.org/wp-content/uploads/blogging/traffic/twitter-bird-2.png">
<img src="http://www.userlogos.org/files/logos/jumpordie/google_plus.png">
</nav>
<div id="terminos">
</div><!-- fin terminos -->
<section>
</section>
</section>
</footer>
</body>
</html>