, , etc. — that every Engage page uses) instead of relying on the platform to supply them. Those tags pull your org's actual logo, configured menu, and social links automatically; you don't need to edit them. Events, Leadership Team, Resources, and Contact Us live on their own pages (whrh-events.html, whrh-leadership.html, whrh-resources.html, whrh-contact.html), each with the same Header/Footer wrapper. In MIT Engage: 1. Create a new page for each (Admin > Website > Pages > Add Page). 2. Paste that page's content file into its Custom HTML block. 3. Add each new page to Admin > Website > Menu — pulls its links from there, so this is what makes Events/ Leadership Team/Resources/Contact Us show up in the nav. Pair all five page files with whrh-custom.css (Website > Custom CSS) and whrh-custom.js (Website > Custom JavaScript) — both are site-wide and already scoped/guarded to work across all of them. -->

Research that finally centers women's health.

WHRH fosters collaboration and discovery to transform women's health research — connecting graduate students, researchers, clinicians, and innovators across MIT and Harvard.

RESEARCHMENTORSHIPADVOCACYCOMMUNITYREPRODUCTIVE HEALTH RESEARCHMENTORSHIPADVOCACYCOMMUNITYREPRODUCTIVE HEALTH
Who we are

We're building the research pipeline women's health never had.

The Harvard-MIT Women's Health Research Hub (WHRH) connects graduate students, researchers, clinicians, and innovators tackling the most pressing challenges in women's health. We catalyze collaborative discovery, mentorship, and education to accelerate equity-driven science and build a new foundation for women's health — hosting lunch seminars, networking events, and panel discussions with professionals in the field. WHRH is run by PhD students at MIT and Harvard.

24
Partner Labs & Groups
7
Courses Curated
150+
Members
2025
Founded
Membership

Member Benefits

A resource-sharing community covering labs & faculty, courses, funding opportunities, conferences & events, curated papers, and women's health startups across MIT and Harvard — plus mentorship from later-stage students, postdocs, professors, and industry professionals.

Our goals

More than a club

👯

Community

A resource-sharing space for labs, courses, funding, conferences, curated papers, and women's health startups.

🌱

Mentorship

Guidance from later-stage students, postdocs, professors, and industry professionals through data clubs and lunch & learns.

🔗

Education

Lunch seminars, networking events, and panel discussions with professionals shaping women's health research.

Join us and help shape the future of women's health research.

Open to all MIT students, postdocs, and affiliates — no research experience required, just curiosity.

const revealEls = document.querySelectorAll('.reveal'); const io = new IntersectionObserver((entries) => { entries.forEach(e => { if (e.isIntersecting) e.target.classList.add('in'); }); }, { threshold: 0.12 }); revealEls.forEach(el => io.observe(el)); const navWrap = document.querySelector('.nav-menu-wrap'); const hamburger = navWrap && navWrap.querySelector('.hamburger'); if (navWrap && hamburger) { hamburger.addEventListener('click', (e) => { e.stopPropagation(); const isOpen = navWrap.classList.toggle('open'); hamburger.setAttribute('aria-expanded', isOpen ? 'true' : 'false'); }); document.addEventListener('click', (e) => { if (!navWrap.contains(e.target)) { navWrap.classList.remove('open'); hamburger.setAttribute('aria-expanded', 'false'); } }); navWrap.querySelectorAll('nav.menu a').forEach(a => { a.addEventListener('click', () => { navWrap.classList.remove('open'); hamburger.setAttribute('aria-expanded', 'false'); }); }); }