-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheffects.html
199 lines (150 loc) · 5.88 KB
/
effects.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE HTML>
<html>
<head>
<title> Effects </title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
<style>
body{
background-image: url('images/gif1.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
#heading{
display: flex;
align-items: center;
justify-content: center;
}
#titleIcon{
height: 100px;
width: 100px;
margin-right: 15px;
border-radius: 50%;
}
#title{
margin-left: 20px;
color: white;
font-size: 50px;
font-family: 'Orbitron', sans-serif;
}
#pictures{
margin-top: 30px;
padding: 10px;
display: flex;
justify-content: center;
}
#pictures img{
height: 180px;
width: auto;
padding-right: 5px;
padding-left: 5px;
}
#info{
color: white;
font-size: 18px;
text-justify: inter-word;
font-family: 'Orbitron', sans-serif;
padding: 20px;
}
pre {
white-space: pre-wrap;
}
#quotes{
padding: 20px;
color: white;
font-family: 'Orbitron', sans-serif;
}
#quotesList{
font-size: 20px;
}
footer {
bottom: 0;
left: 0;
right: 0;
background-color: rgba(255, 255, 255, 0.1);
color: white;
font-family: 'Orbitron', sans-serif;
font-size: 15px;
margin-top: 50px;
padding-top: 10px;
padding-bottom: 20px;
}
#disclaimer{
text-align: center;
}
#teamMembers{
display: flex;
justify-content: center;
}
.teamMemberName{
padding-left: 80px;
padding-right: 80px;
}
#contactUs{
margin-top: 20px;
}
.contacts{
margin-left: 20px;
}
.contacts span{
font-weight: bold;
}
.contacts a{
text-decoration: none;
color: white;
}
#phoneNumberList{
list-style: none;
padding-left: 15px;
}
</style>
</head>
<body>
<!-- HEADER -->
<div id="heading">
<img id="titleIcon" src="https://www.clipartmax.com/png/full/161-1611766_global-warming-global-warming.png"/>
<h1 id="title"> EFFECTS </h1>
</div>
<!-- CONTENT -->
<div id="pictures">
<img src="https://www2.iqair.com/sites/default/files/blog/2021-01/CostofAir21_Desk_a.jpg"/>
<img src="https://www.thethirdpole.net/content/uploads/2021/12/2CMW2JH-1-scaled.jpg" />
<img src="https://www.rd.com/wp-content/uploads/2019/10/1149971648-scaled.jpg" />
<img src="https://ichef.bbci.co.uk/news/976/cpsprodpb/14D7/production/_115653350_hope1.png" />
</div>
<div id="info">
<pre>
Warmer temperatures over time are changing weather patterns and disrupting the usual balance of nature. This poses many risks to human beings and all other forms of life on Earth.
Changes in temperature cause changes in rainfall. This results in more severe and frequent storms. They cause flooding and landslides, destroying homes and communities, and costing billions of dollars.
Water is becoming scarcer in more regions. Droughts can stir destructive sand and dust storms that can move billions of tons of sand across continents. Deserts are expanding, reducing land for growing food. Many people now face the threat of not having enough water on a regular basis.
The ocean soaks up most of the heat from global warming. This melts ice sheets and raises sea levels, threatening coastal and island communities. The ocean also absorbs carbon dioxide, keeping it from the atmosphere. More carbon dioxide makes the ocean more acidic, which endangers marine life.
Climate change poses risks to the survival of species on land and in the ocean. These risks increase as temperatures climb. Forest fires, extreme weather, and invasive pests and diseases are among many threats. Some species will be able to relocate and survive, but others will not.
</pre>
</div>
<div id="quotes">
<h1>QUOTES :</h1>
<ul id="quotesList">
<li><pre> “Earth provides enough to satisfy every man's need, but not every man's greed.”- Mahatma Gandhi </pre></li>
<li><pre> “By polluting the oceans, not mitigating CO2 emissions and destroying our biodiversity, we are killing our planet. Let us face it, there is no planet B.” - Emmanuel Macron </pre></li>
<li><pre> “Climate change isn't something people get to choose to believe or not: it's happening.” - Matt Gaetz </pre></li>
</ul>
</div>
<!-- FOOTER -->
<footer>
<p id="disclaimer"> This website is created and designed by Team Earthlings</p>
<div id="teamMembers">
<div class="teamMemberName"> Swamini Shirsat </div>
<div class="teamMemberName"> Srushthi A </div>
<div class="teamMemberName"> Thaksen Karote </div>
</div>
<p class="contacts" id="contactUs"> <span>Contact Us :</span> <a href="mailto:[email protected]">[email protected]</a></p>
<div style="display: flex;">
<p class="contacts"> <span>Phone Number :</span> </p>
<ul id="phoneNumberList">
<li>+91 9852364562</li>
<li>+91 9852322222</li>
</ul>
</div>
</footer>
</body>
</html>