-
Notifications
You must be signed in to change notification settings - Fork 0
/
teaching.html
152 lines (134 loc) · 4.25 KB
/
teaching.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html>
<head>
<title>Eduardo José Gómez Hernández</title>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<meta charset="UTF-8">
<link rel="canonical" href="https://www.edujgh.net/teaching.html" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.menu ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
position: -webkit-sticky; /* Safari */
position: sticky;
width: 100%;
}
.menu li {
float: left;
border-right: 1px solid #bbb;
}
.menu li:last-child {
border-right: none;
}
.menu a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.menu li a:hover {
background-color: #111;
}
.menu li .active {
background-color: #4CAF50;
}
header h1 {
margin: 1em 0 0.5em 0;
color: #343434;
font-weight: normal;
font-family: 'Ultra', sans-serif;
font-size: 36px;
line-height: 42px;
text-transform: uppercase;
text-shadow: 0 2px white, 0 3px #777;
}
.note {
position: relative;
padding: 1em 1.5em;
margin: 2em auto;
color: #fff;
background: #97C02F;
overflow: hidden;
margin: 1em;
}
.note:before {
content: "";
position: absolute;
top: 0;
right: 0;
border-width: 0 16px 16px 0;
border-style: solid;
border-color: #fff #fff #658E15 #658E15;
background: #658E15;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
/* Firefox 3.0 damage limitation */
display: block; width: 0;
}
.note.rounded {
-moz-border-radius: 5px 0 5px 5px;
border-radius: 5px 0 5px 5px;
}
.note.rounded:before {
border-width: 8px;
border-color: #fff #fff transparent transparent;
-moz-border-radius: 0 0 0 5px;
border-radius: 0 0 0 5px;
}
.note header {
font-size: 175%;
text-decoration: underline;
}
img.profile {
border-radius: 30%;
-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
-moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
}
</style>
</head>
<body>
<header>
<h1>Eduardo José Gómez Hernández</h1>
<nav class="menu">
<ul>
<li><a href="index.html">Biography</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="education.html">Education and Experience</a></li>
<li><a class="active" href="#">Teaching</a></li>
<li><a href="students.html">Students</a></li>
<li><a href="reviewer.html">Reviewer</a></li>
<li><a href="tools.html">Tools</a></li>
<li><a href="news.html">News</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
</header>
<div class="container">
<h2>Course: 2023/2024 (30.00 hours)</h2>
<ul>
<li>Operating Systems for High Performance Environments (Sistemas Operativos para Entornos de Alto Rendimiento), MSc on New Technologies in Computer Science, University of Murcia (30.00 hours)</li>
</ul>
<h2>Course: 2022/2023 (20.00 hours)</h2>
<ul>
<li>Operating Systems for High Performance Environments (Sistemas Operativos para Entornos de Alto Rendimiento), MSc on New Technologies in Computer Science, University of Murcia (20.00 hours)</li>
</ul>
<h2>Course: 2021/2022 (50.00 hours)</h2>
<ul>
<li>Estructura y Tecnología de Computadores, BSc Computer Science, University of Murcia (20.00 hours)</li>
<li>Operating Systems for High Performance Environments (Sistemas Operativos para Entornos de Alto Rendimiento), MSc on New Technologies in Computer Science, University of Murcia (30.00 hours)</li>
</ul>
<h2>Course: 2020/2021 (45.60 hours)</h2>
<ul>
<li>Estructura y Tecnología de Computadores, BSc Computer Science, University of Murcia (45.60 hours)</li>
</ul>
</div>
</div>
</body>
</html>