-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1.01 KB
/
index.html
File metadata and controls
29 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles/main.css">
<script src="scripts/estructuras_control.js"></script>
<link rel="icon" type="image/png" href="resources/favicon.png">
<title>Ejercicios de programación.</title>
</head>
<body>
<div id="contenido">
<div id="cabecera_inicio">
<p class="banner">Ejercicios de programación. JavaScript.</p>
</div>
<ul>
<li><a href="operadores.html" class="icono-arrow1-left">Operadores.</a></li>
<li><a href="estructuras_control.html">Estructuras de control.</a></li>
<li><a href="estructuras_control_extendida.html">Estructuras de control - Extendida.</a></li>
<li><a href="funciones.html">Funciones.</a></li>
<li><a href="eventos.html">Eventos.</a></li>
<li><a href="otros.html">Otros.</a></li>
</ul>
<footer>
(c) 2019 | Fran Gálvez | IES Los Manantiales
</footer>
</div>
</body>
</html>