-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
35 lines (33 loc) · 1.06 KB
/
about.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Sobre Nosotros</title>
<link rel="stylesheet" href="../css/styles.css">
<script src="js/scripts.js"></>
</head>
<body>
<header>
<h1>Sobre Nosotros</h1>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="about.html">Sobre Nosotros</a></li>
<li><a href="services.html">Servicios</a></li>
<li><a href="contact.html">Contacto</a></li>
</nav>
</header>
<main>
<section>
<h2>Nuestra Historia</h2>
<p>Fundada en 2001, nuestra empresa ha crecido significativamente en los últimos años, ofreciendo servicios de alta calidad a nuestros clientes.</p>
<section>
<h2>Nuestro Equipo</h2>
<p>Contamos con un equipo de profesionales altamente calificados y apasionados por su trabajo.</p>
</section>
</main>
<footer>
<p>© 2024 Nombre de la Empresa<p>
</footer>
</body>
</html>