-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (80 loc) · 3.64 KB
/
Copy pathindex.html
File metadata and controls
90 lines (80 loc) · 3.64 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>UTN-Calendario</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://kit.fontawesome.com/c20c1c327a.js" crossorigin="anonymous"></script>
</head>
<body >
<div id="popup" class="popup">
<div class="popup-content">
<h2>¿Que Materias estas rindiendo?</h2>
<label>
<input class="chrckbox-rect" type="checkbox" value="Algebra" >Algebra
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Algoritmos Y Estructura de Datos">Algoritmos Y Estructura de Datos
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Análisis Matemático Tarde">Análisis Matemático Tarde
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Análisis Matemático Noche">Análisis Matemático Noche
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Arquitectura de Computadores">Arquitectura de Computadores
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Física 1">Física 1
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Ingenieria y sociedad">Ingeniería Y Sociedad
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Ingles 1">Ingles 1
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Lógica y estructura de datos">Lógica y estructura de datos
</label>
<label>
<input class="chrckbox-rect" type="checkbox" value="Sistemas y procesos de negocios">Sistemas y procesos de negocios
</label>
<button class="popup-content__button" id="Accept">ACEPTAR</button>
</div>
</div>
<div class="nav-conteiner">
<a href="https://frd.cvg.utn.edu.ar/" target="_blank">
<img class="UTN-Logo" src="./files/logo-utn.png">
</a>
<button class="nav-conteiner__Subjects" id="Subjects">
Materias
</button>
</div>
<div class="Calendar" >
<div class="Calendar-options">
<button class="Calendar-options___button" id="Previus-Month">
<i class="fa-solid fa-chevron-left fa-lg" style="color: #333335;"></i>
</button>
<div class="Calendar-options__Month" id="MonthID"></div>
<button class="Calendar-options___button" id="Next-Month">
<i class="fa-solid fa-chevron-right fa-lg" style="color: #333335;"></i>
</button>
</div>
<div class="Calendar-days" id="CalendarID">
<div class="dayOfCalendar weekday monday">Lunes</div>
<div class="dayOfCalendar weekday">Martes</div>
<div class="dayOfCalendar weekday">Miércoles</div>
<div class="dayOfCalendar weekday">Jueves</div>
<div class="dayOfCalendar weekday">Viernes</div>
<div class="dayOfCalendar weekday">Sábado</div>
<div class="dayOfCalendar weekday sunday">Domingo</div>
</div>
<div class="popup-message" id="msg"></div>
<script src="code.js"></script>
</body>
</html>