-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.11 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta charset="UTF-8">
<title>Ejercicios Layout</title>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="main_index">
<a href="./ejercicio1/ejercicio1.html" class="main_index__anchor">
<img src="./img/goku.png" alt="ejercicio1 - goku normal">
<span>Enlace a Ejercicio1</span>
</a>
<a href="./ejercicio2/ejercicio2.html" class="main_index__anchor">
<img src="./img/goku_ssj.png" alt="ejercicio2 - goku ssj">
<span> Enlace a Ejercicio2</span>
</a>
<a href="./ejercicio3/ejercicio3.html" class="main_index__anchor">
<img src="./img/goku_ssj2.png" alt="ejercicio3 - goku ssj2">
<span>Enlace a Ejercicio3</span>
</a>
<a href="./ejercicio4/ejercicio4.html" class="main_index__anchor">
<img src="./img/goku_ssj3.png" alt="ejercicio4 - goku ssj3">
<span>Enlace a Ejercicio4</span>
</a>
</nav>
<script src="/index.js"></script>
</body>
</html>