-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboxshadow.html
More file actions
44 lines (39 loc) · 1.24 KB
/
boxshadow.html
File metadata and controls
44 lines (39 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>img shadow</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Briem+Hand:wght@100..900&display=swap');
.box{
font-family: "Briem Hand", cursive;
width: 600px;
background-color: rgb(200, 122, 174);
border: 2px solid rgb(119, 5, 79);
margin: 10px 30px 5 0px 80px;
padding:30px 40px 40px 70px;
text-align: justify;
}
.img-nature {
height: 300px;
border-radius: 50px;
margin: 30px;
box-shadow: 2px 2px 5px 10px rgb(138, 136, 136);
}
.img-nature:hover {
border-radius: 20px;
transition: 2s;
}
</style>
</head>
<body>
<h1>Nature is Everything!</h1>
<img src="nature.jpeg" class="img-nature" alt="img" />
<div class="box">
Nature conservation isn't just about saving trees or animals;
it's about ensuring a sustainable and balanced ecosystem.
Every element in nature, be it a roaring river or a buzzing bee,
plays a crucial role in the intricate web of life. By conserving nature,
we're ensuring that this delicate balance remains undisturbed, allowing life in all its diversity to flourish.
</div>
</body>
</html>