-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteaching.html
122 lines (120 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel Martínez Felip - Teaching</title>
<style>
body {
font-family: 'Cambria', 'Times New Roman', serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
.container {
width: 90%;
max-width: 1000px;
margin: auto;
padding: 20px;
}
header {
text-align: center;
padding: 20px 0;
border-bottom: 2px solid #333;
}
h1 {
font-size: 2em;
margin: 0;
color: #2c3e50;
}
nav {
margin-top: 15px;
}
nav ul {
padding: 0;
list-style: none;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: #2c3e50;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
.content {
margin-top: 30px;
background: white;
padding: 30px;
border: 1px solid #ddd;
}
.content-table {
width: 100%;
border-collapse: collapse;
}
.content-table td {
vertical-align: top;
padding: 10px;
}
.image-contact {
width: 25%;
}
.image-contact img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
.text {
width: 75%;
}
h2 {
color: #2c3e50;
border-bottom: 1px solid #2c3e50;
padding-bottom: 5px;
}
a {
color: #1a73e8; /* Blue color for links */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.content-table, .content-table tbody, .content-table tr, .content-table td {
display: block;
width: 100%;
}
.image-contact, .text {
width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Daniel Martínez Felip</h1>
<h2>Teaching</h2>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="curriculum_vitae.html">CV</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="section">
<h2>Teaching</h2>
Environmental Economics, The University of Western Australia, UWA (2024)
</div>
</div>
</div>
</body>
</html>