-
Notifications
You must be signed in to change notification settings - Fork 4
/
aviso.html
105 lines (94 loc) · 4.54 KB
/
aviso.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
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<title>Empresa</title>
<meta name=viewport content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="../favicatalogo.png" />
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="../css/home.css" media="none" onload="if(media!='all')media='all'"->
<link rel="stylesheet" type="text/css" href="../css/materialize.css" media="none" onload="if(media!='all')media='all'"->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/materialize.min.js"></script>
</head>
<body>
<!--Inicio de la barra de navegacion-->
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper">
<a href="../index.php" id="Logo" class="brand-logo left">n³</a><a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons"><i class="material-icons">menu</i></i></a>
<ul id="enlaces_menu" class="hide-on-med-and-down">
<li><a href="../catalogo/index.php">Tienda</a></li>
<li><a href="../ofertas/index.php">Ofertas</a></li>
<li><a href="../tutoriales/index.php">Tutoriales</a></li>
<ul id="" class="hide-on-med-and-down right">
<li><a href="../carrito/index.php" id="BotonCarrito"><img height="50px" src="../img/carrito.png"></a></li>
<li><a href="../SignUp.php" id="BotonSignUp">Registrate</a></li>
<li><a href="../Login.php" id="BotonLogin">Inicio de sesión</a></li>
</ul>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="../catalogo/index.php">Tienda</a></li>
<li><a href="../carrito/index.php" id="BotonCarrito"><img height="50px" src="../img/carrito.png"></a></li>
<li><a href="../SignUp.php" id="BotonSignUp">Registrate</a></li>
<li><a href="../Login.php" id="BotonLogin">Inicio de sesión</a></li>
<li><a href="../ofertas/index.php">Ofertas</a></li>
<li><a href="../tutoriales/index.php">Tutoriales</a></li>
</ul>
</div>
</nav>
</div>
<script type="text/javascript">$(".button-collapse").sideNav();</script>
<!-- Fin de la barra de navegacion-->
<!-- Footer -->
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l4 m6 s6">
<h class="white-text"><a href="index.php"><h1 class="white-text">n³</h1></a></h>
<h6 class="white-text">Siguenos en:</h6>
<br>
<a class="grey-text text-lighten-3" href="https://www.facebook.com/enealcubon3"><img src="../icons/fb.png" height="64px"></a>
<br>
<a class="grey-text text-lighten-3" href="https://twitter.com/enealcubon3"><img src="../icons/tw.png" height="64px"></a>
<br>
<a class="grey-text text-lighten-3" href="https://www.instagram.com/enealcubon3/"><img src="../icons/ig.png" height="64px"></a>
</div>
<div class="col l4 m6 s6">
<br>
<h5 class="white-text">Más</h5>
<br>
<ul>
<li><a class="grey-text text-lighten-3" href="#!">Aviso de privacidad</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Preguntas frecuentes</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Empresa</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Terminos de uso</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Proveedores</a></li>
</ul>
</div>
<div class="col l4 m12 s12">
<form name="contacto" action="" method="POST">
<p class="grey-text text-lighten-4"><h4 class="white-text">Contacto: </h4></p>
<font color="white"><input type="text" name="" placeholder="Nombre"></font>
<font color="white"><input type="text" name="" placeholder="Correo"></font>
<font color="white"><input type="text" name="" placeholder="Asunto"></font>
<font color="white"><textarea name="Mensaje" rows="10" cols="40" placeholder="Escribe tus comentarios..."></textarea></font>
<br>
<br>
<button class="btn waves-effect waves-light" type="submit" name="action" id="Enviar">Enviar
<i class="material-icons right">send</i>
</button>
</form>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2016 Bugisoft
<a class="grey-text text-lighten-4 right" href="index.php">Inicio</a>
</div>
</div>
</footer>
<!-- Footer -->
</body>
</html>