-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
39 lines (34 loc) · 1.4 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Verdú Method — Firebird 2.5 Cross-DB Queries</title>
<style>
body { font-family: 'Segoe UI', sans-serif; text-align: center; padding: 50px 20px; background: #fafafa; }
h1 { color: #c00; font-size: 2.2em; margin-bottom: 30px; }
.card { display: inline-block; margin: 20px; padding: 30px; background: white; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); width: 300px; }
a { display: inline-block; margin-top: 15px; padding: 10px 25px; background: #c00; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; }
a:hover { background: #a00; }
.flag { font-size: 2em; margin-bottom: 10px; }
</style>
</head>
<body>
<h1>🌐 The Verdú Method</h1>
<p><em>Native Multi-Database Queries in Firebird 2.5 — Discovered by Salvador Verdú (2023)</em></p>
<div class="card">
<div class="flag">🇪🇸</div>
<h2>Versión en Español</h2>
<a href="index-es.html">Leer documento</a>
</div>
<div class="card">
<div class="flag">🇺🇸</div>
<h2>English Version</h2>
<a href="index-en.html">Read document</a>
</div>
<p style="margin-top: 50px; color: #777;">
© 2025 Salvador Verdú • Santiago de la Ribera, Spain<br>
<a href="https://github.com/olbeup" target="_blank">@olbeup</a>
</p>
</body>
</html>