-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresources.html
41 lines (39 loc) · 1.57 KB
/
resources.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
<!DOCTYPE html>
<html>
<head>
<title>MomCom - External Resources</title>
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon">
<link rel="icon" href="./assets/favicon.ico" type="image/x-icon">
<link rel='stylesheet' type='text/css' href='./style.css'>
<link href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<!--TOP BANNER-->
<div class='top-banner'>
<div id='non-hyperlink' class='title'><a href='./index.html'>MomCom</a></div>
<div class='nav-links'>
<span><a href='./about.html'>About Us</a></span>
<span>Log In</span>
</div>
</div>
<!--DIFFERENT RESOURCE PANELS-->
<div class='resource-list'>
<!--FIND A DOULA-->
<div class='panel'>
<h2>Find a doula:</h2>
<p><a href='https://doulamatch.net'>DoulaMatch.net</a></p>
</div>
<!--DOCTORS OF COLOR-->
<div class='panel'>
<h2>Doctors of color in your area:</h2>
<p><a href='https://blackdoctor.org'>BlackDoctor.org</a></p>
<p><a href='https://birthwithoutbias.com/'>Irth App</a></p>
</div>
<!--POSTPARTUM SUPPORT-->
<div class='panel'>
<h2>Postpartum Support:</h2>
<p><a href='https://www.mahmee.com/'>Mahmee App</a></p>
</div>
</div>
</body>
</html>