-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiagramas.html
32 lines (32 loc) · 978 Bytes
/
diagramas.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Fundamentals Evaluation - Diagramas VV</title>
<link rel="stylesheet" href="/styles/index.css" />
</head>
<body>
<header class="header">
<div class="container header__container">
<a href="/index.html">
<img
src="assets/images/codeable-logo-sm.svg"
alt="codeable-logo"
width="135"
height="32"
class="header__logo"
/>
</a>
<nav class="navigation">
<ul>
<li class="active"><a href="/diagramas.html">Diagramas VV</a></li>
<li><a href="/funciones.html">Funciones</a></li>
<li><a href="/dom.html">Manipulación del DOM</a></li>
</ul>
</nav>
<p class="header__name">Diego Torres</p>
</div>
</header>
</body>
</html>