-
Notifications
You must be signed in to change notification settings - Fork 0
/
learn.html
49 lines (44 loc) · 1.16 KB
/
learn.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
<!DOCTYPE html>
<html>
<head>
<style>
body{
background-color: skyblue;
}
details > summary {
padding: 4px;
width: 300px;
background-color: #eeeeee;
border: 2px solid tomato;
box-shadow: 1px 1px 2px #bbbbbb;
cursor: pointer;
color: mediumseagreen;
}
details > p {
background-color: #eeeeee;
padding: 4px;
margin: 0;
box-shadow: 1px 1px 2px #bbbbbb;
border:2px solid violet;
color: dodgerblue;
}
</style>
</head>
<body >
<h1>STAR FOUNDATION</h1>
<details>
<summary>How are we making a differnce </summary>
<br>
<br>
<p>oxygen for life is an initiative of the star foundation to raise some amount through donation to supply oxygen concentarator and oxygen plant aross india.</p>
<br>
<br>
<p>we are patnered with more than 10+ travel or food companies to collectively match the public conribution to create a consolidated pool.</p>
<br>
<br>
<p>Star foundation also add equal the amount of donation amount collected which will we donated to rural govt hospital to solve the availability problem and also private hospital at the cost price.</p>
<br>
<br>
</details>
</body>
</html>