-
Notifications
You must be signed in to change notification settings - Fork 1
/
articles.html
94 lines (89 loc) · 2.94 KB
/
articles.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SHEQUALITY — Articles</title>
<link
rel="apple-touch-icon"
href="https://cdn.glitch.com/9358b7d4-1332-4e69-bee5-c76ab151e1b0%2Foutput-onlinepngtools%20(3).png?v=1594870759533"
/>
<link
rel="icon"
sizes="192x192"
href="https://cdn.glitch.com/9358b7d4-1332-4e69-bee5-c76ab151e1b0%2Foutput-onlinepngtools%20(3).png?v=1594870759533"
/>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- import the webpage's javascript file -->
<script src="script.js" defer></script>
</head>
<!-- Header-->
<!--Navigation Bar-->
<body>
<nav>
<div class="navbar">
<a href="index.html">Home</a>
<a href="volunteerabroad.html">Volunteer</a>
<div class="dropdown">
<button class="dropbtn">
Resources & Media
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="videos.html">Videos</a>
<a href="articles.html">Articles</a>
</div>
</div>
<a href="about.html">About</a>
</div>
</nav>
<h1><span class="highlight">ARTICLES</span></h1>
<h2>
Read these articles to become more informed about global inequality and
what you can do to help.
</h2>
<h3>
<a
href="https://faculty.wcas.northwestern.edu/~sjv340/roots_of_gender_inequality.pdf"
>The Roots of Gender Inequality in Developing Countries</a
>
</h3>
<p>
Read this article to find out more about the roots of inequality and the
different spheres in which inequality happens whether it is education,
health, gender-based violence, or employment.
</p>
<h3>
<a
href="https://borgenproject.org/gender-equality-important-developing-world/"
>Gender Equality and the Developing World</a
>
</h3>
<p>
This article discusses the ways to reduce inequality and the possible
results from such change.
</p>
<h3>
<a
href="https://plan-international.org/news/2018-01-22-no-country-gender-equality-2030"
>No Country Will Achieve True Gender Equality by 2030</a
>
</h3>
<p>
This article poses the reasons for why gender inequality can't happen.
</p>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</body>
<footer>
<img
src="https://cdn.glitch.com/9358b7d4-1332-4e69-bee5-c76ab151e1b0%2Foutput-onlinepngtools%20(4).png?v=1594870922092"
style="width:12.5%"
/>
<p>
<span class="highlight">Made by Kiana Fong and Kayley Seow</span><br />
</p>
</footer>
</html>