-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.55 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.55 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
38
39
40
<!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">
<link rel="stylesheet" href="./styles/style.css">
<title>Estructuras de datos animadas</title>
</head>
<body>
<div class="wrap">
<header>
<div class="home"><a href="index.html">Inicio</a></div>
<div class="menu">
<ul>
<li><a href="./estructuras/pila.html">Pila</a></li>
<li><a href="./estructuras/cola.html">Cola</a></li>
<li><a href="./estructuras/lista.html">Lista</a></li>
</ul>
</div>
</header>
<div class="principal">
<h1>Estructuras de datos animadas</h1>
<p>Visualización de 3 distintas estrucutras de datos animadas</p>
<p><b>Hecho por: </b> Meza Vargas Brandon David</p>
</div>
<svg class="wave" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#000b76" fill-opacity="1" d="M0,96L48,106.7C96,117,192,139,288,154.7C384,171,480,181,576,202.7C672,224,768,256,864,234.7C960,213,1056,139,1152,90.7C1248,43,1344,21,1392,10.7L1440,0L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path>
</svg>
</div>
<div class="datos">
<div class="card">
<h3></h3>
</div>
</div>
</body>
</html>