-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
81 lines (78 loc) · 2.85 KB
/
contacto.html
File metadata and controls
81 lines (78 loc) · 2.85 KB
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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contacto - Modelo Prompt</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="content">
<main>
<div class="tab-content" id="contact">
<h1>Contacto</h1>
<p>
Gracias por tu interés en
<strong>Modelo Prompt</strong>.
</p>
<div class="contact-info">
<p>
<strong>Nombre:</strong> Alan Mac-Arthur García Díaz
</p>
<p>
<strong>Correo electrónico:</strong>
<a
href="mailto:alan.mac.arthur.garcia.diaz@gmail.com"
>alan.mac.arthur.garcia.diaz@gmail.com</a
>
</p>
<p>
<strong>Proyecto:</strong>
<a
href="https://github.com/mac100185/Modelo_Prompt"
target="_blank"
rel="noopener noreferrer"
>Modelo Prompt en GitHub</a
>
</p>
</div>
<p>
Este es un proyecto personal de código abierto. Por
favor, ten paciencia si la respuesta no es inmediata.
</p>
<p>
Antes de contactar, asegúrate de haber revisado la
documentación y el código fuente en el repositorio de
GitHub.
</p>
</div>
</main>
</div>
<footer>
<p>
© 2025 Alan Mac-Arthur García Díaz. GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
</p>
<nav>
<a
href="politica-privacidad.html"
target="_blank"
rel="noopener noreferrer"
>Política de privacidad</a
>
<a
href="terminos-uso.html"
target="_blank"
rel="noopener noreferrer"
>Términos de uso</a
>
<a
href="contacto.html"
target="_blank"
rel="noopener noreferrer"
>Contacto</a
>
</nav>
</footer>
</body>
</html>