-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabric.html
109 lines (96 loc) · 4.55 KB
/
fabric.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!--
DIKULT105 - Assignment 05
Code by Marco Corrales Cardenas
-->
<!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.0">
<title>Shapes the way we think about the world</title>
<link href="css/style1.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Roboto:wght@300&family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" id="stylesheet" href="css/style1.css">
<script src="scripts/switch.js"></script>
</head>
<body>
<main>
<section class="box" id="img1">
<article class="content1">
<h1>The Social Fabric</h1>
<p>“If we are to achieve a richer culture, rich in contrasting values, we must recognize the whole gamut
of human potentialities, and so weave a less arbitrary social fabric, one in which each diverse gift will
find a fitting place.”
<cite>- Margaret Mead</cite>
</p>
</article>
</section>
<section class="box" id="img2">
<div class="imgBox">
<img src="images/altibra2.JPG" id="imgdos" alt="Rainbow drawings used during the COVID-19 pandemic spread hope. ">
</div>
<article class="content2">
<h2>Hope</h2>
<p>While the pandemic has revealed the enormous cleavages across the countries of the world,
the pandemic itself is likely to increase disparities. <cite>- Joseph Stiglitz</cite>
</p>
</article>
</section>
<section class="box" id="img3">
<div class="imgBox">
<img src="images/cusco_flag.JPG" id="imgtres" alt="The official flag of Cusco in Peru ">
</div>
<article class="content3">
<h2>Race & Ethnicity</h2>
<p>The flag of Tawantinsuyo-The Inca Empire in Cusco-Perú. After decolonization, the indigenous
population in Peru, as in other previous colonies, continue to live marginalized lives.
</p>
</article>
</section>
<section class="box" id="img4">
<div class="imgBox">
<img src="images/happy_pride_flag.jpeg" id="imgcuatro" alt="The LGTB flag">
</div>
<article class="content4">
<h2>Gender & Sex</h2>
<p> “People around the world face violence and inequality - and sometimes torture, even execution - because of
who they love, how the look, or who they are.”
<cite>- Human Rights Watch</cite>
</p>
</article>
</section>
<section class="box" id="img5">
<div class="imgBox">
<img src="images/medias.JPG" id="imgcinco" alt="Socks with colors as symbols to awareness of down syndrome">
</div>
<article class="content5">
<h2>Disability</h2>
<p>The #LotsOfSocks campaign exists to raise awareness of Down syndrome.
<cite>- Worlddownsyndromeday.org</cite>
</p>
</article>
</section>
<section class="box" id="img6">
<div class="imgBox">
<img src="images/pute1.jpg" id="imgseis" alt="Pattern of colors showing diversity of class.">
</div>
<article class="content6">
<h2>Class</h2>
<p>“All history has been a history of class struggles between dominated classes at various states of
social development.”<cite> - Friedrich Engels</cite>
</p>
</article>
</section>
<!-- The swtich button for changing -->
<button id="switchbutton" type="button" onclick="switchCSS('css/style1.css','css/style2.css'); return false;">
<!--<img src="#" id="imgseis" alt="The Social Fabric">*/-->
</button>
</main>
</body>
</html>