-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 1.1 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
<!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="./estilos/estilo.css">
<link rel="icon" href="horario.jpg">
<title>Horario de clases</title>
</head>
<body>
<div class="titulo">
<h1>Horario de clases</h1>
</div>
<h2 class="dia">Que Dia Es:</h2>
<div class="padre">
<button type="button"><a href="./paginas/lunes.html" class="enlace">Lunes</a></button>
<button type="button"><a href="./paginas/martes.html" class="enlace">Martes</a></button>
<button type="button"><a href="./paginas/miercoles.html" class="enlace">Miercoles</a></button>
<button type="button"><a href="./paginas/jueves.html" class="enlace">Jueves</a></button>
<button type="button"><a href="./paginas/viernes.html" class="enlace">Viernes</a></button>
<!-- <button type="button"><a href="./paginas/sabado.html" class="enlace">Sabado</a></button> -->
</div>
</body>
</html>