<!DOCTYPE html>
<!--Create an base html web page-->
<html>
<head>
<!--Styles the citation button-->
<style>
.active, .collapsible:hover {
background-color: #FDDEE3;
}
.content {
padding: 0 18px;
display: none;
overflow: hidden;
}
</style>
<!--Styles the whole page and makes it adjustable to different window sizes-->
<meta name="viewport" content="width=device-width, inital-scale=1">
<style>
body {
display: flex;
flex-direction: column;
width: 100vw;
justify-content: center;
}
</style>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<br />
<!--Styles the text telling the user their quiz results-->
<p style="background-color: rgb(137, 207, 240); font-size: 125%; margin:0px 0px 0px 0px;">
Based on your answers, it is not likely you are pregnant. This is not an official diagnosis and we recommend you to get further testing, such as a pregnancy test. Please scroll down and select your location near you to access the resources you need below.
</p>
<!--Inserts and styles the image of the pregnant woman and the doctor-->
<img src="https://www.nicepng.com/png/detail/54-540195_25-nov-pregnant-woman-with-doctor-cartoon.png" alt="pregnancy_test" width="410" height="229">
<p> <a href="index.html">Click here</a> to try the quiz again if you think there was a mistake or you have developed new symptoms. </p>
<p>
<!--Creates a line to divide the page up-->
<hr size="3" width="100%" color="black">
<br /> <br />
<b>MAIN CITIES IN YEMEN</b>
<br /> <br />
<hr size="3" width="100%" color="black">
<br />
<b>Sanaa</b>
<br />
<!--Organizes and styles the resources available-->
Resources Avalible:
<br />
Aseel Foundation for Relief and Development
<br />
Located in Sanaa, Yemen
<br />
+967772080010
<br />
info@asfrd.org
<br />
https://asfrd.org/health-and-nutrition/
<br /><br />
This foundation provides:
<br />
- Pregnancy tests and other testing procedures
<br />
- Practice safe delivery methods for pregnant women.
<br />
- Best practices on child and women care
<br />
- Sexual and reproductive health and rights
<br />
- Hygienic and environmental sanitation
<br />
- Developing preventive healthcare and health education
<br />
<hr size="3" width="100%" color="black">
<br />
<br />
<b>Al Mukalla</b>
<br />
Resources Avalible:
<br />
Mothers and Children Hospital
<br />
Located in Al Mukalla, Yemen
<br />
+9675302012
<br /><br />
This centre provides:
<br />
- pregnancy tests and other testing procedures
<br />
- services of family planning
<br />
- pre and postnatal care
<br />
- laboratory testing
<br />
- vaccinations
<br />
- X-rays
<br />
<hr size="3" width="100%" color="black">
<br />
<br />
<b>Taizz</b>
<br />
Resources Avalible:
<br />
26 September Mother and Child Health Center
<br />
Located in Taizz, Yemen
<br />
+9678459302
<br /><br />
This centre provides:
<br />
- Pregnancy tests and other testing procedures
<br />
- free medical care for mother and children
<br /><br />
Their goal:
<br />
- to lower the high mortality rates of Yemen (which they have done)
<br />
- to help expectant mothers with all the procedures that come with pregnancy
<br />
</p>
<!--This is the HTML that makes the button for the citations-->
<button type="button" class="collapsible">Click here for CITATIONS</button>
<div class="content">
<p>
- Callahan, Alice. “What Causes Morning Sickness?” The New York Times, The New York Times, 3 Aug. 2018, www.nytimes.com/2018/08/03/well/what-causes-morning-sickness.html. <br />
- “Health and Nutrition.” Aseel Foundation for Relief and Development, 10 Sept. 2019, asfrd.org/health-and-nutrition/. <br />
- https://iwhc.org/wp-content/uploads/2007/10/11-_young_adoles_mena_english_new_links.pdf <br />
- “Looming Famine Threatens the Lives of 2 Million Pregnant Women and New Mothers in Yemen.” United Nations Population Fund, 9 Nov. 2018, www.unfpa.org/news/looming-famine-threatens-lives-2-million-pregnant-women-yemen. <br />
- “Symptoms of Pregnancy: What Happens First.” Mayo Clinic, Mayo Foundation for Medical Education and Research, 11 May 2019, www.mayoclinic.org/healthy-lifestyle/getting-pregnant/in-depth/symptoms-of-pregnancy/art-20043853. <br />
- “Tabsir.net.” Tabsir.net " Sex Education in Yemen, tabsir.net/?p=2178. <br />
- www.nicepng.com/png/detail/54-540195_25-nov-pregnant-woman-with-doctor-cartoon.png. <br />
- www.sitarambhartia.org/wp-content/uploads/2018/06/Pregnancy-test-kit-1170x520@2x.png. <br />
</div>
<!--This is Java to make the pop up text work-->
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function () {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</body>
</html>