-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
78 lines (53 loc) · 1.91 KB
/
contacto.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Inducción - Contacto</title>
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="container">
<header></header>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="guias.html">Guías</a></li>
<li><a href="avances.html">Avances</a></li>
<li><a href="material.html">Material</a></li>
<li><a href="contacto.html" class="active">Contacto</a></li>
</ul>
</nav>
<main>
<h1>Programa de Inducción al Área y al Puesto</h1>
<article>
<h2>Contacto</h2>
<p><strong>Oficina de Capacitación</strong></p>
<p>
<address>
Matamoros #180, planta alta<br>
Col. Centro, C.P. 28000<br>
Colima, Colima<br>
<br>
Tel. 312 313 4079<br>
</address>
</p>
</article>
<article class="sidenote">
<h2>Directorio</h2>
<hr>
<p><strong>Lic. Martha Paola Becerra Gutiérrez</strong><br>
Jefa de la Oficina de Capacitación</p>
<p><strong>Ing. Lizbeth Casarrubias García</strong><br>
Responsable de Proyectos</p>
<p><strong>Lic. Lluvia Gutiérrez Málaga</strong><br>
Instructora</p>
</article>
</main>
<footer>
<p>Zaragoza No. 62, Col. Centro, C.P. 28000, Colima, Col. Tel. 312 312 6959</p>
</footer>
</div>
</body>
</html>