-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
174 lines (149 loc) · 4.39 KB
/
index.html
File metadata and controls
174 lines (149 loc) · 4.39 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Débora Dutra – Cientista</title>
<style>
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; background:#f4f6f8; color:#333; }
/* Sidebar esquerda */
.sidebar {
width: 250px;
background:#2c3e50;
color:white;
position:fixed;
top:0; left:0;
height:100%;
text-align:center;
padding:20px;
}
.sidebar img {
width:120px; height:120px;
border-radius:50%;
margin-bottom:15px;
object-fit:cover;
border:3px solid #1abc9c;
}
.sidebar h1 { font-size:1.6em; margin-bottom:5px; }
.sidebar p { margin:6px 0; font-size:0.95em; }
.sidebar a { color:#1abc9c; text-decoration:none; }
.sidebar a:hover { text-decoration:underline; }
/* Menu topo */
.topnav {
margin-left:250px;
background:#2980b9;
display:flex;
align-items:center;
height:50px;
padding:0 20px;
}
.topnav a {
color:white;
padding:14px 20px;
text-decoration:none;
font-weight:bold;
cursor:pointer;
}
.topnav a:hover { background:#1abc9c; }
/* Conteúdo */
.main-content {
margin-left:250px;
margin-top:50px;
padding:40px;
max-width:900px;
min-height:600px;
}
h2 {
color:#2c3e50;
border-bottom:2px solid #2980b9;
padding-bottom:5px;
margin-bottom:15px;
}
ul { margin:10px 0 20px 20px; }
li { margin-bottom:8px; }
footer {
text-align:center;
padding:20px;
background:#ecf0f1;
color:#666;
font-size:0.9em;
}
@media (max-width:768px){
.sidebar { width:100%; height:auto; position:relative; }
.topnav { margin-left:0; flex-wrap:wrap; height:auto; }
.main-content { margin-left:0; margin-top:0; padding:20px; }
}
</style>
</head>
<body>
<!-- Sidebar -->
<div class="sidebar">
<img src="lattes.png" alt="Débora Dutra">
<h1>Débora Dutra</h1>
<p>📍 São José dos Campos, SP, Brasil</p>
<p>🏫 Doutoranda em Sensoriamento Remoto – INPE</p>
<p>✉️ <a href="mailto:debora.joana@inpe.br">debora.joana@inpe.br</a></p>
<p>🔗 <a href="https://orcid.org/0000-0003-3748-5622" target="_blank">ORCID</a></p>
<p>🔗 <a href="http://lattes.cnpq.br/0607282523645907" target="_blank">Lattes</a></p>
<p>🔗 <a href="https://bv.fapesp.br/pt/pesquisador/714029/debora-joana-dutra" target="_blank">BV FAPESP</a></p>
</div>
<!-- Menu -->
<div class="topnav">
<a onclick="loadPage('home.html')">Início</a>
<a onclick="loadPage('projetos.html')">Projetos</a>
<a onclick="loadPage('publicacoes.html')">Publicações</a>
<a onclick="loadPage('dashboards.html')">Dashboards</a>
<a onclick="loadPage('zenodo.html')">Zenodo</a>
</div>
<!-- Conteúdo Principal -->
<div class="main-content" id="main-content">
<h2>Sobre mim</h2>
<p><strong>Quem sou:</strong></p>
<ul>
<li>Doutoranda em Sensoriamento Remoto pelo INPE</li>
<li>Mestre em Análise e Modelagem de Sistemas Ambientais (UFMG)</li>
<li>Bacharel em Engenharia Ambiental e Sanitária (CEFET-MG)</li>
</ul>
<p><strong>Interesses de Pesquisa:</strong></p>
<ul>
<li>Impactos econômicos e ambientais de incêndios florestais</li>
<li>Degradação florestal e mudanças no uso da terra</li>
<li>Modelagem espacial aplicada a riscos ambientais</li>
<li>Sensoriamento remoto para monitoramento ambiental</li>
</ul>
<p><strong>Projeto de Doutorado Atual:</strong></p>
<ul>
<li><em>THE POTENTIAL ECONOMIC LOSSES FROM FIRE IN BRAZILIAN TERRITORY</em></li>
</ul>
<p><strong>Especialidades:</strong></p>
<ul>
<li>Sensoriamento remoto e geoprocessamento</li>
<li>Modelagem ambiental e análise espacial</li>
<li>Ciência de dados aplicada a desmatamento e incêndios</li>
</ul>
</div>
<footer>
© 2026 Débora Dutra – Página científica pessoal
</footer>
<script>
function loadPage(url) {
fetch(url)
.then(response => {
if (!response.ok) {
throw new Error("Arquivo não encontrado: " + url);
}
return response.text();
})
.then(html => {
document.getElementById("main-content").innerHTML = html;
})
.catch(error => {
document.getElementById("main-content").innerHTML =
"<h2>Erro</h2><p>Não foi possível carregar a página.</p>";
console.error(error);
});
}
</script>
</body>
</html>