-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtipodocumento.html
62 lines (51 loc) · 2.2 KB
/
tipodocumento.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ALTMANN - Modelando Conocimiento</title>
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="site-header">
<div class="contenedor contenido-header">
<div class="barra">
<a href="/">
<img src="img/logoaltmann19gris.PNG" alt="Logotipo Altmann">
</a>
<nav class="navegacion">
<a href="productos.html">Productos</a>
<a href="soluciones.html">Soluciones</a>
<a href="contacto.html">Contacto</a>
<a href="iniciosesion.html">Iniciar Sesión</a>
</nav>
</div>
</div> <!-- Contenedor -->
</header>
<main class="contenedor seccion contenido-centrado seleccionar-opcion">
<h2 class="fw-300 centrar-texto">Tipo de documento</h2>
<form action="">
<fieldset>
<a href="ingresarorden.html" class="boton boton-opcion d-block">Ingresar Orden</a>
<a href="ingresardociso.html" class="boton boton-opcion d-block">Ingresar Documento ISO</a>
<a href="ingresardocgeneral.html" class="boton boton-opcion d-block">Ingresar Documento General</a>
</fieldset>
</form>
</main>
<!-- Sección Pie de página-->
<footer class="site-footer seccion">
<div class="contenedor contenedor-footer">
<nav class="navegacion">
<a href="productos.html">Productos</a>
<a href="soluciones.html">Soluciones</a>
<a href="contacto.html">Contacto</a>
<a href="iniciosesion.html">Iniciar Sesión</a>
</nav>
<p class="copyright">Todos los derechos reservados 2019 © </p>
</div>
</footer>
</body>
</html>