-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
56 lines (55 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="source/css/main.css">
<script src="source/js/main.js"></script>
</head>
<body>
<header id="p-header">
<nav id="p-navigation">
<ul id="p-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">acerca de</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="clientes.html">clientes</a></li>
</ul>
</nav>
</header>
<section id="servicios">
<ul id="lista-servicios">
<li> Servicio 1</li>
<li> Servicio 2</li>
<li> Servicio 3</li>
<li> Servicio 4</li>
<li> Servicio 5</li>
<li> Servicio 6</li>
<li> Servicio 7</li>
<li> Servicio 8</li>
<li> Servicio 9</li>
</ul>
</section>
<footer id="p-footer">
<div>
<h5>Information</h5>
<p>© 2023 Soccer Web Application</p>
<p>Created by: BST</p>
</div>
<div>
<h5>Services </h5>
<p>Terms and Conditions</p>
<p>Privacy Policy</p>
</div>
<div>
<h5>Follow Us</h5>
<p>Facebook</p>
<p>Twitter</p>
<p>Instagram</p>
</footer>
</body>
</html>