-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 967 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 967 Bytes
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Investigación Operativa II</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header>
<h1>Investigación Operativa II</h1>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="teoria_colas.html">Teoría de Colas</a></li>
<li><a href="programacion_dinamica.html">Programación Dinámica</a></li>
<li><a href="programacion_no_lineal.html">Programación No Lineal</a></li>
</ul>
</nav>
</header>
<main>
<h2>Bienvenido</h2>
<p>Selecciona una de las secciones del menú para explorar los temas de Investigación Operativa II.</p>
</main>
<footer>
<p>© 2024 Investigación Operativa II</p>
</footer>
</body>
</html>