-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
39 lines (39 loc) · 1.29 KB
/
services.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
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Servicios</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container-nav">
<nav class="navbar" role="navigation">
<a href="#" class="brand">Mi Página Web</a>
<ul class="nav-links">
<li><a href="index.html">Inicio</a></li>
<li><a href="about.html">Acerca de</a></li>
<li><a href="services.html">Servicios</a></li>
<li><a href="contact.html">Contacto</a></li>
</ul>
</nav>
<button class="button-menu-toggle">Menu</button>
</div>
<div class="container">
<h1>Nuestros Servicios</h1>
<p>Descubre aquí los servicios que ofrecemos.</p>
<ul>
<li>Servicio 1</li>
<li>Servicio 2</li>
<li>Servicio 3</li>
</ul>
</div>
<footer>
<div class="container alert-button">
<button onclick="showAlert()" aria-label="Haz clic en mí">¡Haz clic en mí!</button>
</div>
<p class="copyright">Creado por Natalia Devia - 2023</p>
</footer>
<script src="script.js"></script>
</body>
</html>