-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathawards.html
More file actions
107 lines (94 loc) · 2.51 KB
/
awards.html
File metadata and controls
107 lines (94 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Awards – Nicole Mitidieri-Rivera</title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
<style>
body {
font-family: "Helvetica", sans-serif;
margin: 0;
padding: 0;
background-color: #fafafa;
color: #222;
line-height: 1.6;
}
header {
background-color: #2c3e50;
color: white;
padding: 1rem;
text-align: center;
}
header a {
color: #ecf0f1;
text-decoration: none;
font-weight: bold;
margin: 0 10px;
}
header a:hover {
text-decoration: underline;
}
h1, h2, h3 {
color: #2c3e50;
text-align: left;
}
ul {
max-width: 800px;
margin: 1rem auto;
padding: 0;
}
li {
margin-bottom: 1rem;
}
@media (max-width: 768px) {
body {
padding: 0 1rem;
}
}
</style>
</head>
<body>
<header>
<h1>Nicole Mitidieri-Rivera</h1>
<nav>
<a href="index.html">Home</a>
<a href="outreach.html">Outreach</a>
<a href="awards.html">Awards</a>
<a href="mailto:mitidieririv@wisc.edu">Contact</a>
</nav>
</header>
<main>
<h1>Awards & Honors</h1>
<ul>
<li>
<strong>Student Research Grants Competition - Research Travel Funds (1,500 USD) </strong> – WiSh Hub, UW-Madison (2025).
</li>
<li>
<strong>LACIS Graduate Student Travel Grant (1,200 USD) </strong> – LACIS, UW-Madison (2024).
</li>
<li>
<strong>NYBG Visiting Scientist Travel Award (1,400 USD) </strong> – NYBG Steere Herbarium (2024).
</li>
<li>
<strong>Graduate Research Grant (3,000 USD) </strong> – Society of Systematic Biologists (2023).
</li>
<li>
<strong>P.E.O. International Peace Scholarship awardee (20,000 USD)</strong> – 2022-2023 & 2024-2025.
</li>
<li>
<strong>Graduate Research Grant (1,200 USD) </strong> – American Society of Plant Taxonomists (2022).
</li>
<li>
<strong>Graduate Student Research Award (1,500 USD) </strong> – Botanical Society of America (2022).
</li>
<li>
<strong>Fulbright fellowship to study a Ph.D. in the United States of America</strong> – 2021-2023.
</li>
</ul>
<p style="text-align:center;">
<a href="index.html">← Back to Home</a>
</p>
</main>
</body>
</html>