-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (135 loc) · 6.54 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Environmental Determinism vs. Environmental Possibilism</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<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=Noto+Sans+Gurmukhi:[email protected]&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=Open+Sans:ital,wght@0,300..800;1,300..800&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:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="src/style.css" />
</head>
<body>
<div class="container">
<div class="row">
<header>
<h1 class="text-center p-2 m-4 mb-5">
Environmental Determinism
<br>
vs.
<br>
Environmental Possibilism
</h1>
</header>
</div>
<section class="environmental-text">
<div class="row">
<h2 class="text-center">What is Environmental Determinism?</h2>
<p class="p-2 m-3 mb-2">
Also known as geographical or climatic determinism, this theory suggests that the environment
shapes humans, their actions, behavior and thoughts. For example, an environmental determinist might argue
that people in warmer climates are less likely to be economically innovative than people in
cooler climates. Environmental factors that might influence people include landforms, climate,
river systems, and more.
</p>
</div>
<div class="row">
<h2 class="text-center">What is Environmental Possibilism?</h2>
<p class="p-2 m-3 mb-4">
This theory suggests that humans can adapt to and even change their environment to achieve
their goals.
</p>
</div>
</section>
<section class="environmental-determinism-vs-environmental-possibilism-example-section">
<div class="container m-3">
<h3 class="text-center p-2 m-3">Examples of Environmental Determinism & Environmental Possibilism</h3>
<div class="places-grid text-center">
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="japan.html">
Japan
</a>
</div>
</div>
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="egypt.html">
Egypt
</a>
</div>
</div>
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="india.html">
India
</a>
</div>
</div>
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="northamerica.html">
North America
</a>
</div>
</div>
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="mexico.html">
Mexico
</a>
</div>
</div>
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="singapore.html">
Singapore
</a>
</div>
</div>
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="saudiarabia.html">
Saudi Arabia
</a>
</div>
</div>
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="florida.html">
Florida
</a>
</div>
</div>
<div class="card border-dark mb-3" style="max-width: 18rem;">
<div class="card-title">
<a href="newyork.html">
New York
</a>
</div>
</div>
</div>
</div>
</section>
<section class="sources">
<p>
Sources from Generated AI.
</p>
</section>
<section class="credit-section bg-dark p-4 text-white">
This page is design and created by
<a href="https://github.com/ASV185/environmental-determinism-vs-environmental-possibilism" class="github-link">
Amanda Ventura
</a>
</section>
</div>
</body>
</html>