forked from Penguin-Bash/PinuxWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (108 loc) · 3.11 KB
/
Copy pathindex.html
File metadata and controls
126 lines (108 loc) · 3.11 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Enciclopedia Pinux — Inicio</title>
<style>
body {
background: #e8e8e8;
color: #111;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 900px;
margin: 28px auto;
background: #f4f7f2;
border: 2px solid #2b5f2b;
padding: 18px;
border-radius: 6px;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}
header {
background: #d7f0d7;
border: 1px solid #2b5f2b;
padding: 12px 16px;
border-radius: 4px;
}
h1 {
margin: 0;
font-size: 28px;
color: #144014;
}
h2 {
color: #1b5b1b;
border-bottom: 1px dashed #9ccf9c;
padding-bottom: 6px;
margin-top: 20px;
}
p {
line-height: 1.45;
}
nav.main-nav {
background: #bce5bc;
border: 1px solid #2b5f2b;
border-radius: 4px;
margin-top: 10px;
padding: 6px 10px;
text-align: center;
}
nav.main-nav a {
color: #0b6623;
text-decoration: none;
margin: 0 8px;
font-weight: bold;
}
nav.main-nav a:hover {
text-decoration: underline;
}
footer {
font-size: 12px;
color: #444;
margin-top: 18px;
border-top: 1px dashed #cfe6cf;
padding-top: 8px;
text-align: center;
}
.clear {
clear: both;
}
a {
color: #0b6623;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Enciclopedia Pinux</h1>
<nav class="main-nav">
<a href="index.html">Inicio</a> |
<a href="informacion.html">Información</a> |
<a href="historia.html">Historia</a> |
<a href="guias.html">Guías</a> |
<a href="https://www.reddit.com/r/esLinux/">Foro Linux en Español</a> |
<a href="contacto.html">Contacto</a>
</nav>
</header>
<!-- Sección de bienvenida -->
<section id="bienvenida">
<h2>Bienvenidos a Enciclopedia Pinux</h2>
<p>¡Saludos cordiales! Nos alegra que hayas llegado hasta aquí.
Esta web está dedicada a quienes quieren explorar el mundo de <strong>Linux</strong> y el <strong>software libre</strong>,
aprender sobre su historia, entender sus principios y descubrir cómo aprovecharlo para mantener sus sistemas
actualizados y sostenibles.</p>
<p>En nuestras secciones encontrarás desde información básica, historia detallada, guías de uso paso a paso, hasta recursos y enlaces útiles para profundizar en tus conocimientos.
Esperamos que disfrutes la experiencia y te inspires a formar parte de la comunidad Linux.</p>
<p>¡Bienvenido y feliz aprendizaje!</p>
</section>
<footer>
© 2025 Enciclopedia Pinux
<br>Cordiales saludos a todos nuestros visitantes.
</footer>
<div class="clear"></div>
</div>
</body>
</html>