-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (51 loc) · 1.58 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
<!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>Save Nature</title>
<style>
body {
height: auto;
width: auto;
background-image: url("https://helpsavenature.com/wp-content/uploads/2020/01/cropped-helpsavenature.jpg");
background-size: cover;
background-position: center;
position: relative;
background-repeat: no-repeat;
background-attachment:fixed;
}
.head{
position: absolute;
left : 7%;
top : 800%;
color: rgb(74, 5, 13);
font-size:x-large;
font-family:cursive;
text-decoration: underline;
text-shadow:3px 3px rgb(228, 46, 22);
}
.text{
position: absolute;
color: rgb(176, 238, 30);
text-align: justify;
top: 1205%;
left: 7%;
font-weight:900;
font-size:xx-large;
font-family:cursive;
}
</style>
</head>
<body>
<div class="head">
<h1>🌻SAVE NATURE🌻</h1></div>
<div class="text">
<p>🌳Plant can survive without Humans
<br>
but Humans cannot survive without Plants.</p>
</div>
<BR>
</body>
</html>