-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductos.php
77 lines (53 loc) · 2.6 KB
/
productos.php
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
<?php require("include/session.php"); ?>
<?php require("include/functions.php"); ?>
<?php if(logged_in()) redirect_to("main.php") ?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1.0">
<title> SixtoRed </title>
<link rel="stylesheet" type="text/css" href="css/estilos_pantalla.css">
<link rel="stylesheet" type="text/css" href="css/disposicion_grande_pantallas.css">
<link rel="stylesheet" type="text/css" media="only screen and (min-width:50px) and (max-width:500px)" href="css/disposicion_pequena_pantallas.css">
<link rel="stylesheet" type="text/css" media="only screen and (min-width:501px) and (max-width:800px)" href="css/disposicion_mediana_pantallas.css">
<!-- font awesome -->
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css">
<link href = "https://fonts.googleapis.com/css?family= Do + Hyeon " rel = "hoja de estilo">
<!--[if lt IE 9]>
<script src= "http://html5shiv.googlecode.com/sun/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="pagina">
<header>
<a href="#" class="logo" ></a>
</header><!-- /header -->
<article> <h1> Productos y Servicios
</h1>
<br>
<?php
echo "<i>".session_msg()."</i>";
?>
<p> Software de gestión de abonados para empresas de TV cable e internet. (N play) </br>
Software ganadero, gestión de caravanas, TRI Y TXT. </br>
Software de gestión, emision e impresión de guias de renta de Santiago del Estero. </br>
Desarrollo página web, diseño web adaptable (responsive).
</p>
</article>
<img class="centrado" src="imagenes/logo.png" alt="Acerca.html">
<nav>
<a href="index.php">Home</a>
<a href="acercade.php">Acerca de</a>
<a href="productos.php">Productos</a>
<a target="_blank" href="https://api.whatsapp.com/send?phone=+5493843461578&text=Hola"><i class="fa fa-whatsapp" aria-hidden="true"></i> Contacto </a>
<a href="ingresar.php">Ingresar</a>
</nav>
<footer>
© SixtoRed, servicios informaticos.<br>
<i class="fa fa-envelope-o" aria-hidden="true"></i> sixtod@gmail.com
<div class="rating">
</footer>
</div>
</body>
</html>