-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.49 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.49 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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ejercicios Master Front-End XVII de Lemoncode</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="wrap">
<main>
<h1>Ejercicios Master Front-End XVII de Lemoncode</h1>
<h2>Realizados por Murquisdev (Marcos Peñalosa)</h2>
<nav>
<ul>
<a href="./00_UX/index.html"><li>Módulo 00 - UX</li></a>
<a href="./01_LAYOUT/index.html"><li>Módulo 01 - Layout</li></a>
</ul>
</nav>
</main>
<footer>
<nav>
<ul>
<!-- prettier-ignore-->
<a class="transparent" aria-hidden="true" href="/index.html"><li><img src="/assests/home.svg" alt="Home" /></li></a>
<!-- prettier-ignore-->
<a class="transparent" aria-hidden="true" href="/index.html"><li><img src="/assests/arrow_back.svg" alt="Arrow back" /></li></a>
<!-- prettier-ignore-->
<a class="transparent" aria-hidden="true" href="/index.html"><li><img src="/assests/arrow_upward.svg" alt="Arrow upward" /></li></a>
<!-- prettier-ignore-->
<a class="transparent" aria-hidden="true" href="/index.html"><li><img src="/assests/arrow_forward.svg" alt="Arrow foward" /></li></a>
</ul>
</nav>
</footer>
</div>
</body>
</html>