-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.22 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
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Fundamentos de JavaScript</title>
<style>
a {
margin-right: 20px;
}
</style>
</head>
<body>
<header>
<h1>Fundamentos de JavaScript</h1>
<h3>Con Luis Aviles(@luixaviles)</h3>
</header>
<p>Sígueme en los siguientes canales:</p>
<a href="https://github.com/luixaviles" target="_blank">GitHub</a>
<a href="https://twitter.com/luixaviles" target="_blank">Twitter</a>
<a href="https://www.facebook.com/luixaviles.dev/" target="_blank">Facebook</a>
<a href="https://www.youtube.com/c/luixaviles" target="_blank">YouTube</a>
<script src="app.js"></script>
<!-- <script src="01-consola.js"></script> -->
<!-- <script src="02-variables.js"></script> -->
<!-- <script src="03-tipado.js"></script> -->
<!-- <script src="04-operadores.js"></script> -->
<!-- <script src="05-cadenas.js"></script> -->
<!-- <script src="06-arreglos.js"></script> -->
<!-- <script src="07-objetos.js"></script> -->
<!-- <script src="08-condicionales.js"></script> -->
<!-- <script src="09-ciclos.js"></script> -->
<!-- <script src="10-funciones.js"></script> -->
</body>
</html>