-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/images/favicon.jpg" type="image/x-icon">
<title>Home</title>
</head>
<body>
<header>
<h1>NOMBRE DE LA WEB</h1>
<nav>
<ul>
<li><a href="whoweare.html">Quienes somos?</a></li>
<li><a href="cv.html">Nuestros CV</a></li>
<li><a href="contact.html">Contacto</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>
<main>
<h2>Home</h2>
<p>Esta página tiene información de los 3 miembros de nuestro grupo</p>
<p>Nosotros somos:
<ul>
<li><a href="whoweare.html/#alberto"><h3>Alberto Vidal:</h3> </a></li>
<li><a href="whoweare.html/#david"><h3>David Pegueroles:</h3> </a></li>
<li><a href="whoweare.html/#pau"><h3>Pau Ibáñez:</h3> </a></li>
</ul>
</p>
</main>
<footer>
<p>made by dpa</p>
</footer>
</body>
</html>