-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss3 copy.html
100 lines (96 loc) · 4.52 KB
/
css3 copy.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
<!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>writing mode</title>
<style>
h1{
color:aliceblue;
background-color: black;
}
#h2{
color:whitesmoke;
background-color:burlywood;
border-width: 4px;
border-style: solid;
height:200px;
border-color: greenyellow;
font-size:33px;
padding: 20px 20px 20px 20px;
}
img{
width:570px;
height:250px;
border-width: 4px;
border-style: solid;
border-color: greenyellow;
}
#n1{
border-width: 2px;
border-style: solid;
border-color: blue;
outline:2px solid red;
background-color: pink;
/* here we lrn how to give outline */
outline-width: 2px;
outline-style: 10px;
/* here we lrn how to give padding */
padding: 12px 12px 12px 12px;
/* how to give a height and width to the paragraph */
width:700px;
height:200px;
}
body{
background-color: skyblue;
}
h3
{
color:green;
background-color:black;
}
#box{
width:700px;
height:250px;
border:2px solid black;
padding :15px;
box-sizing: border-box;
background-color: yellow;
/* margin: 50px 0 0 100px; */
box-shadow: -9px -9px 3px yellowgreen, 12px 12px 3px black;
/* font size */
/* font-size: 15px; */
}
</style>
</head>
<body>
<!-- {
background-color:
}
-->
<h1 align="center"><b>If you hurt nature, you are hurting yourself</b></h1>
<div id="h2">
<h2 align="center"><i>"What is our relationship with nature?"<br></i></h2><br>
</div><br>
<img align="right"src="kaboompics_An open book with dried leaves lies on the moss in the forest.jpg"
alt="This is natural image"width="500px">
<div id="n1">
<p>What is nature? There is a great deal of talk and endeavour to protect nature, the animals, the birds, the whales and dolphins, to clean the polluted rivers, lakes, fields and so on. Nature is not put together by thought, as religion and belief are. Nature is the tiger, that extraordinary animal with its energy, its great sense of power. Nature is the solitary tree in the field, the meadows and the grove; it is that squirrel shyly hiding behind a bough. Nature is the ant, the bee and all the living things of the earth. Nature is the river, not a particular river, whether the Ganga, the Thames or the Mississippi. Nature is those mountains, snow-clad, with dark blue valleys and range of hills meeting the sea. The universe is part of nature. One must have a feeling for all this, not destroy it, not kill for one’s pleasure or one’s table. We do kill cabbages, the vegetables we eat, but one must draw the line somewhere. If you do not eat vegetables, how will you live? So one must intelligently discern</p>
</div><br>
<!-- box-sizing is using here -->
<!-- box shadow is using -->
<h3 align="center"><b>What does Nature give us?</b></h3><br>
<img align="right" src="lake-g459884006_1280.jpg"
alt="natural2">
<div id="box">
<p><i>Biologists hope the stocking effort will help increase the growth, survival, and distribution of the fish, which are native to the Trout Basin, and the largest cutthroat trout species in the world.
Lahontan cutthroat trout are listed
Yet we have so disconnected ourselves from the natural world that it is easy—and often convenient—to forget that nature remains as giving as ever, even as it vanishes bit-by-bit.
The rise of technology and industry may have distanced us superficially from nature, but it has not changed our reliance on the natural world: most of what we use and consume on a daily basis remains the product of multitudes of interactions within nature, and many of those interactions are imperiled.
Beyond such physical goods, the natural world provides less tangible, but just as important, gifts in terms of beauty, art, and spirituality.
as a threatened species under the federal Endangered Species Act. Their original listing in 1970 predates the modern act itself, which was passed in 1973.
</i></p>
</div>
</body>
</html>