-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutreach.html
More file actions
100 lines (85 loc) · 2.04 KB
/
outreach.html
File metadata and controls
100 lines (85 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Outreach – 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;
}
p {
text-align: justify;
max-width: 800px;
margin: 0 auto;
}
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>Outreach</h1>
<p>
I am passionate about making science accessible to all audiences and sharing the wonders of plant diversity and evolution through outreach activities, workshops, and public talks.
My outreach work focuses on fostering curiosity about biodiversity, promoting Latin American botany, and encouraging diversity and inclusion in STEM.
</p>
<ul>
<li>
<strong>REACH Ambassador</strong> — UW-Madison.
</li>
<li>
<strong>ISS Ambassador</strong> — UW-Madison.
</li>
</ul>
<p style="text-align:center;">
<a href="index.html">← Back to Home</a>
</p>
</main>
</body>
</html>