-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.47 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.47 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vertex Zenit - Trabajos</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
}
main {
padding: 2em;
}
.gallery img {
width: 100%;
height: auto;
}
</style>
</head>
<body>
<header>
<h1>Trabajos de Vertex Zenit</h1>
</header>
<main>
<section>
<h2>Proyectos Destacados</h2>
<p>Aquí puedes incluir una descripción general de los proyectos destacados.</p>
</section>
<section class="gallery">
<h2>Galería de Trabajos</h2>
<img src="imagen1.jpg" alt="Imagen 1">
<img src="imagen2.jpg" alt="Imagen 2">
<!-- Añade más imágenes según sea necesario -->
</section>
<section>
<h2>Detalles de los Proyectos</h2>
<p>Aquí puedes incluir detalles específicos de cada proyecto, como descripciones, tecnologías utilizadas, etc.</p>
</section>
</main>
<footer>
<p>© 2025 Vertex Zenit</p>
</footer>
</body>
</html>